print.kSearch | R Documentation |
Basic printing of an object of class kSearch
. Prints the estimated dimension k
along with
all tested values and corresponding p-values.
## S3 method for class 'kSearch'
print(x, digits = getOption("digits"), ...)
x |
An object of class |
digits |
Number of significant digits to use when printing p-values. Defaults to |
... |
Further arguments. |
Katariina Perkonoja
summary.kSearch
, kSearch
n <- 500
S <- cbind(rnorm(n, sd = 2), rnorm(n, sd = 1.5), rnorm(n), rnorm(n))
A <- rorth(4)
X <- S %*% t(A)
result <- kSearch(X, method = PCAasymp)
result
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.