Learn R Programming

equate (version 0.1-1)

kurt.freqtab: Kurtosis of a Frequency Distribution

Description

This function returns the kurtosis of a frequency table of class freqtab

Usage

kurt.freqtab(x)

Arguments

x
two-column matrix of class freqtab, where column 1 specifies the score scale and column 2 the frequencies for each score point

See Also

skew.freqtab, cov.freqtab

Examples

Run this code
set.seed(2005)
x <- round(rnorm(1000,100,10))
xscale <- 70:130
xtab <- freqtab(x,xscale)
kurt.freqtab(xtab)

Run the code above in your browser using DataLab