diff options
author | Johannes Ranke <jranke@uni-bremen.de> | 2016-09-27 23:00:48 +0200 |
---|---|---|
committer | Johannes Ranke <jranke@uni-bremen.de> | 2016-09-27 23:00:48 +0200 |
commit | 12a31f4c130c551f82232d9ef7dfb608bd52c53f (patch) | |
tree | 2525ab1ea4102a6edddbd0c2f03f4a851bf2f9c5 /pkg/man/geomean.Rd | |
parent | 0d958ab6f84b569b5437f231c56004890c4ae23b (diff) |
Reorganise repository using standard package layout
Diffstat (limited to 'pkg/man/geomean.Rd')
-rw-r--r-- | pkg/man/geomean.Rd | 31 |
1 files changed, 0 insertions, 31 deletions
diff --git a/pkg/man/geomean.Rd b/pkg/man/geomean.Rd deleted file mode 100644 index ed82294..0000000 --- a/pkg/man/geomean.Rd +++ /dev/null @@ -1,31 +0,0 @@ -% Generated by roxygen2: do not edit by hand -% Please edit documentation in R/geomean.R -\name{geomean} -\alias{geomean} -\title{Calculate the geometric mean} -\usage{ -geomean(x, na.rm = TRUE) -} -\arguments{ -\item{x}{Vector of numbers} - -\item{na.rm}{Should NA values be omitted?} -} -\value{ -The geometric mean -} -\description{ -Based on some posts in a thread on Stackoverflow -\url{http://stackoverflow.com/questions/2602583/geometric-mean-is-there-a-built-in} -This function checks for negative values, removes NA values per default and -returns 0 if at least one element of the vector is 0. -} -\examples{ -geomean(c(1, 3, 9)) -geomean(c(1, 3, NA, 9)) -\dontrun{geomean(c(1, -3, 9)) # returns an error} -} -\author{ -Johannes Ranke -} - |