print.farm.scree {FarmTest}R Documentation

Summarize and print the results of the eignevalue ratio test

Description

Print method for farm.scree objects.

Usage

## S3 method for class 'farm.scree'
print(x, ...)

Arguments

x

A "farm.scree" object.

...

Further arguments passed to or from other methods.

Value

Summarizes the results of the factor-finding step.

See Also

farm.scree and plot.farm.scree

Examples

set.seed(100)
p = 100
n = 20
epsilon = matrix(rnorm( p*n, 0,1), nrow = n)
B = matrix(rnorm(p*3,0,1), nrow=p)
fx = matrix(rnorm(3*n, 0,1), nrow = n)
X = fx%*%t(B)+ epsilon
output = farm.scree(X, cv = FALSE)
output

[Package FarmTest version 1.0.3 Index]