mean.utils {PerformanceAnalytics} | R Documentation |
calculate attributes relative to the mean of the observation series given, including geometric, stderr, LCL and UCL
Description
Usage
## S3 method for class 'geometric':
mean(x, ...)
## S3 method for class 'stderr':
mean(x, ...)
## S3 method for class 'UCL':
mean(x, ci = 0.95, ...)
## S3 method for class 'LCL':
mean(x, ci = 0.95, ...)
Arguments
x |
a vector, matrix, data frame, or time series to calculate the modified mean statistic over |
ci |
the confidence interval to use |
... |
any other passthru parameters |
Author(s)
Peter Carl
See Also
sd
mean
Examples
data(edhec)
mean.geometric(edhec[,"Funds of Funds"])
mean.stderr(edhec[,"Funds of Funds"])
mean.UCL(edhec[,"Funds of Funds"])
mean.LCL(edhec[,"Funds of Funds"])
[Package
PerformanceAnalytics version 1.0.0
Index]