mean.geometric  | 
geometric mean | 
mean.stderr  | 
standard error of the mean (S.E. mean) | 
mean.LCL  | 
lower confidence level (LCL) of the mean | 
mean.UCL  | 
upper confidence level (UCL) of the mean | 
# S3 method for geometric mean(x, ...) # S3 method for stderr mean(x, ...) # S3 method for LCL mean(x, ci = 0.95, ...) # S3 method for UCL mean(x, ci = 0.95, ...)
| x | a vector, matrix, data frame, or time series to calculate the modified mean statistic over  | 
    
|---|---|
| … | any other passthru parameters  | 
    
| ci | the confidence interval to use  | 
    
data(edhec) mean.geometric(edhec[,"Funds of Funds"])#> Funds of Funds #> Geometric Mean 0.005753581mean.stderr(edhec[,"Funds of Funds"])#> Funds of Funds #> Standard Error 0.001477185mean.UCL(edhec[,"Funds of Funds"])#> Funds of Funds #> Upper Confidence Level 0.008837041mean.LCL(edhec[,"Funds of Funds"])#> Funds of Funds #> Lower Confidence Level 0.002999801