Usage
skewness(x, ...)
## S3 method for class 'default':
skewness(x, na.rm = FALSE, \dots)
## S3 method for class 'data.frame':
skewness(x, \dots)
## S3 method for class 'POSIXct':
skewness(x, \dots)
## S3 method for class 'POSIXlt':
skewness(x, \dots)
kurtosis(x, ...)
## S3 method for class 'default':
kurtosis(x, na.rm = FALSE, \dots)
## S3 method for class 'data.frame':
kurtosis(x, \dots)
## S3 method for class 'POSIXct':
kurtosis(x, \dots)
## S3 method for class 'POSIXlt':
kurtosis(x, \dots)
basicStats(x, ci = 0.95, column = 1)
rowStats(x, FUN, na.rm = FALSE, ...)
rowAvgs(x, na.rm = FALSE, ...)
rowVars(x, na.rm = FALSE, ...)
rowStdevs(x, na.rm = FALSE, ...)
rowSkewness(x, na.rm = FALSE, ...)
rowKurtosis(x, na.rm = FALSE, ...)
rowCumsums(x, na.rm = FALSE, ...)
colStats(x, FUN, na.rm = FALSE, ...)
colAvgs(x, na.rm = FALSE, ...)
colVars(x, na.rm = FALSE, ...)
colStdevs(x, na.rm = FALSE, ...)
colSkewness(x, na.rm = FALSE, ...)
colKurtosis(x, na.rm = FALSE, ...)
colCumsums(x, na.rm = FALSE, ...)
stdev(x, na.rm = FALSE)
Arguments
ci
confidence interval, a numeric value, by default 0.95,
i.e. 95 percent.
column
[basicStats] -
which column should be selected from the input matrix,
data frame or timeSeries object. By default an integer
value set to 1.
FUN
the statistical function to be applied.
na.rm
a logical. Should missing values be removed?
x
a numeric vector, or a matrix for column statistics.
[basicStats] -
allows also a matrix, data.frame or timeSeries as input.
In this case only the first column of data will be considered
and a a warning will be printed.
...
arguments to be passed.