Displaying 2 results from an estimated 2 matches for "descstat".
Did you mean:
deststat
2007 May 08
1
Looking for a comprehensive descriptive statistics package
Hi all,
I'm looking for a package that will give me comprehensive set of
descriptive statistics, including skew and kurtosis. Also, is there a
similar package that will provide multivariate descriptive statistics as
well? Thanks in advance,
David
--
===========================================================================
David Kaplan, Ph.D.
Professor
Department of Educational
2009 Nov 21
1
what do i do to fix missing packages...see error
...0, to=1, by=0.25))
+ themean <- mean(mydata)
+ thesd <- sd(mydata)
+ kurt <- kurtosis(mydata)
+ skew <- skewness(mydata)
+ retlist <- list(Quantiles=quantls, Mean=themean, StandDev=thesd,
+ Skewness=skew, Kurtosis=kurt)
+ return(retlist)
+ }
> descstats <- desc(exampledata)
Loading required package: e1071
Error in desc(exampledata) : could not find function "kurtosis"
In addition: Warning message:
In library(package, lib.loc = lib.loc, character.only = TRUE, logical.return
= TRUE, :
there is no package called 'e1071'
--...