eda.stats | R Documentation |
Generates summary statistics of mean, median, skew, kurtosis, min, max and quartiles.
eda.stats(x)
x |
numeric array |
requires timeDate library
Named list with the following items:
summary |
min, 1st quartile, median, mean, 3rd quartile, max |
skew |
skewness |
kurt |
kurtosis |
Garry Grabow
eda.shape
,
summary
,skewness
,
kurtosis
require(timeDate) # summary statistics for random normal data # mean of 1. sd = 0.3 ndata<-rnorm(25,1,.3) eda.stats(ndata) #summary statistics for right-skewed data #mean of 1, sd=1 rdata<-rexp(25,rate=1) eda.stats(rdata)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.