From 3151647526f299686b68420a83ae38cd7f3d08f5 Mon Sep 17 00:00:00 2001 From: Johannes Ranke Date: Mon, 9 Nov 2015 09:05:15 +0100 Subject: Rebuild vignettes and static documentation --- inst/web/geometric_mean.html | 113 +++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 113 insertions(+) create mode 100644 inst/web/geometric_mean.html (limited to 'inst/web/geometric_mean.html') diff --git a/inst/web/geometric_mean.html b/inst/web/geometric_mean.html new file mode 100644 index 00000000..93962dca --- /dev/null +++ b/inst/web/geometric_mean.html @@ -0,0 +1,113 @@ + + + + +geometric_mean. mkin 0.9-41 + + + + + + + + + + + + + + + + + +
+
+ +
+ +

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