FarmTest (version 1.0.3)

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

Description

Print method for farm.scree objects.

Usage

# S3 method for 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

Run this code
# NOT RUN {
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
# }

Run the code above in your browser using DataCamp Workspace