https://github.com/cran/robCompositions
Raw File
Tip revision: 809548cfabc86e3512f0fc30dd6c03621ade3d54 authored by Matthias Templ on 08 April 2018, 16:28:01 UTC
version 2.0.7
Tip revision: 809548c
gm_backup.R
gm_backup <- function (x) {
	if(!is.numeric(x)) stop("x has to be a vector of class numeric")
	if (any(na.omit(x == 0)))
		0
	else exp(mean(log(unclass(x)[is.finite(x) & x > 0])))
}
back to top