Nothing
#' @importFrom stats sd
#' @export
protLogCV<-function(logData, base){
val=log(base)
data=logData*val
cv=apply(data, 1, function(x) sqrt(exp(stats::sd(x, na.rm = TRUE)^2)-1))*100
cv
}
#' @export
protCV<-function(data){
cv=apply(data, 1, function(x) sd(x, na.rm = TRUE)/mean(x, na.rm = TRUE))*100
}
Any scripts or data that you put into this service are public.
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.