print.farm.scree: Summarize and print the results of the eignevalue ratio test

Description Usage Arguments Value See Also Examples

Description

Print method for farm.scree objects.

Usage

1
2
## 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

1
2
3
4
5
6
7
8
9
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

kbose28/FarmTest documentation built on May 29, 2019, 3:01 a.m.