descriptive.summary {ig} | R Documentation |
The function descriptive.summary()
gives a descriptive summary of the data.
descriptive.summary(x)
x |
Vector of observations. |
The function descriptive.summary()
gives a descriptive summary of the data containing: mean,
median, mode, standard deviation, coefficients of variation, skewness and kurtosis,
range, minimum, maximum and the number de observations. This function uses the command
basicStats()
of the R package named Fbasics and the command search.mode()
that allows
to find the empirical mode of the data.
The function descriptive.summary()
carries out a descriptive summary of the data
Víctor Leiva <victor.leiva@uv.cl>, Hugo Hernández <hugo.hernandez@msn.com>, and Antonio Sanhueza <asanhue@ufro.cl>.
## Generates a sample from the IGTD ## Produces a descriptive summary of the data x<-rig(300,mu=1,lambda=1,kernel="normal") descriptive.summary (x)