View source: R/summary.monte1.R
summary.monte1 | R Documentation |
summary method for class "monte1"
## S3 method for class 'monte1'
summary(object, digits = 3, ...)
object |
An object of class |
digits |
Number of significant digits to print in final results. |
... |
Additional argument affecting the summary produced. |
Various descriptive statistics will be computed including
Expected correlation matrix.
Observed correlation matrix.
Expected indicator skewness values.
Observed indicator skewness values.
Expected indicator kurtosis values.
Observed indicator kurtosis values.
## Generate dimensional data for 4 variables.
## All correlations = .60; all variable
## skewness = 1.75;
## all variable kurtosis = 3.75
cormat <- matrix(.60, 4, 4)
diag(cormat) <- 1
nontaxon.dat <- monte1(seed = 123, nsub = 100000, nvar = 4, skewvec = rep(1.75, 4),
kurtvec = rep(3.75, 4), cormat = cormat)
summary(nontaxon.dat)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.