kurtosis.folder {dad} | R Documentation |
Kurtosis coefficients of a folder of data sets
Description
Computes the kurtosis coefficient by column of the elements of an object of class folder
.
Usage
kurtosis.folder(x, na.rm = FALSE, type = 3)
Arguments
x |
an object of class |
na.rm |
logical. Should missing values be omitted from the calculations? (see |
type |
an integer between 1 and 3 (see |
Details
It uses kurtosis
to compute the mean by numeric column of each element of the folder. If some columns of the data frames are not numeric, there is a warning, and the means are computed on the numeric columns only.
Value
A list whose elements are the kurtosis coefficients by column of the elements of the folder.
Author(s)
Rachid Boumaza, Pierre Santagostini, Smail Yousfi, Gilles Hunault, Sabine Demotes-Mainard
See Also
folder
to create an object is of class folder
.
mean.folder
, var.folder
, cor.folder
, skewness.folder
for other statistics for folder
objects.
Examples
# First example: iris (Fisher)
data(iris)
iris.fold <- as.folder(iris, "Species")
iris.kurtosis <- kurtosis.folder(iris.fold)
print(iris.kurtosis)
# Second example: roses
data(roses)
roses.fold <- as.folder(roses, "rose")
roses.kurtosis <- kurtosis.folder(roses.fold)
print(roses.kurtosis)