https://github.com/cran/robCompositions
Raw File
Tip revision: d761b2fedaa3133904cf8bbd87ad4e6fcfdf79ac authored by Matthias Templ on 15 April 2019, 16:22:43 UTC
version 2.1.0
Tip revision: d761b2f
gm.Rd
% Generated by roxygen2: do not edit by hand
% Please edit documentation in R/gm.R
\name{gm}
\alias{gm}
\title{gmean}
\usage{
gm(x)
}
\arguments{
\item{x}{a vector}
}
\description{
This function calculates the geometric mean.
}
\details{
\code{gm} calculates the geometric mean for all positive entries of a vector. 
Please note that there is a faster version available implemented with Rcpp
but it currently do not pass CRAN checks cause of use of Rcpp11 features. This C++ version
accounts for over- and underflows. It is placed in inst/doc
}
\examples{
gm(c(3,5,3,6,7))
}
\author{
Matthias Templ
}
back to top