From 86782bbdb64a594688f3f4e26b2b137435f1e6b5 Mon Sep 17 00:00:00 2001 From: Nic Crane Date: Mon, 16 Aug 2021 16:08:32 +0100 Subject: [PATCH] Add back in man dir --- inst/testpkg/man/add.Rd | 21 +++++++++++++++++++++ inst/testpkg/man/any_nas.Rd | 17 +++++++++++++++++ inst/testpkg/man/deduct.Rd | 18 ++++++++++++++++++ 3 files changed, 56 insertions(+) create mode 100644 inst/testpkg/man/add.Rd create mode 100644 inst/testpkg/man/any_nas.Rd create mode 100644 inst/testpkg/man/deduct.Rd diff --git a/inst/testpkg/man/add.Rd b/inst/testpkg/man/add.Rd new file mode 100644 index 0000000..0f19834 --- /dev/null +++ b/inst/testpkg/man/add.Rd @@ -0,0 +1,21 @@ +% Generated by roxygen2: do not edit by hand +% Please edit documentation in R/add.R +\name{add} +\alias{add} +\title{Add two numbers together} +\usage{ +add(x, y, na.rm = FALSE) +} +\arguments{ +\item{x}{A number} + +\item{y}{Another number} + +\item{na.rm}{Drop NAs?} +} +\description{ +Add two numbers together +} +\examples{ +add(1, 2) +} diff --git a/inst/testpkg/man/any_nas.Rd b/inst/testpkg/man/any_nas.Rd new file mode 100644 index 0000000..fdbf5f8 --- /dev/null +++ b/inst/testpkg/man/any_nas.Rd @@ -0,0 +1,17 @@ +% Generated by roxygen2: do not edit by hand +% Please edit documentation in R/utils.R +\name{any_nas} +\alias{any_nas} +\title{Count NAs in vectors} +\usage{ +any_nas(...) +} +\arguments{ +\item{...}{Vectors} +} +\value{ +Are there any NAs in any vectors? +} +\description{ +Count NAs in vectors +} diff --git a/inst/testpkg/man/deduct.Rd b/inst/testpkg/man/deduct.Rd new file mode 100644 index 0000000..c9e38a5 --- /dev/null +++ b/inst/testpkg/man/deduct.Rd @@ -0,0 +1,18 @@ +% Generated by roxygen2: do not edit by hand +% Please edit documentation in R/deduct.R +\name{deduct} +\alias{deduct} +\title{Deduct one number from another} +\usage{ +deduct(x, y, na.rm = FALSE) +} +\arguments{ +\item{x}{A number} + +\item{y}{Another number} + +\item{na.rm}{Drop NAs?} +} +\description{ +Deduct one number from another +}