Learn R Programming

fungible (version 2.2.2)

summary.monte1: Summary Method for an Object of Class Monte1

Description

summary method for class "monte1"

Usage

# S3 method for monte1
summary(object, digits = 3, ...)

Value

Various descriptive statistics will be computed including"

  1. Expected correlation matrix.

  2. Observed correlation matrix.

  3. Expected indicator skewness values.

  4. Observed indicator skewness values.

  5. Expected indicator kurtosis values.

  6. Observed indicator kurtosis values.

Arguments

object

An object of class monte1, usually, a result of a call to monte1.

digits

Number of significant digits to print in final results.

...

Additional argument affecting the summary produced.

Examples

Run this code

## 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)

Run the code above in your browser using DataLab