From a350a16bb2c11986faf5883a2804d46b03bd7c8f Mon Sep 17 00:00:00 2001 From: Johannes Ranke Date: Sat, 10 Sep 2016 05:21:52 +0200 Subject: Static documentation rebuilt with current staticdocs Using hadley/staticdocs commit #8c1069d from 8 days ago --- docs/geometric_mean.html | 114 +++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 114 insertions(+) create mode 100644 docs/geometric_mean.html (limited to 'docs/geometric_mean.html') diff --git a/docs/geometric_mean.html b/docs/geometric_mean.html new file mode 100644 index 00000000..7b746fa3 --- /dev/null +++ b/docs/geometric_mean.html @@ -0,0 +1,114 @@ + + + + +geometric_mean. mkin 0.9.44.9000 + + + + + + + + + + + + + + + + + + +
+
+ +
+ +

Calculate the geometric mean

+ +
+
+

Usage

+
geometric_mean(x, na.rm = FALSE)
+ +

Arguments

+
+
x
+
A numeric vector
+
na.rm
+
Should NA values be ignored
+
+ +
+

Description

+ +

Function calculating the geometric mean of numeric vectors

+ +
+ +
+

Value

+ +

+ The geometric mean. +

+ +
+ +

Examples

+
geometric_mean(c(1,3, 9))
+
[1] 3 +
+
geometric_mean(c(1,3, NA))
+
[1] NA +
+
geometric_mean(c(1,3, NA), na.rm = TRUE)
+
[1] 1.732051 +
+
+ +
+ + +
+ + \ No newline at end of file -- cgit v1.2.1