print.factor.number {fnets} | R Documentation |
Print factor number
Description
Prints a summary of a factor.number
object
Usage
## S3 method for class 'factor.number'
print(x, ...)
Arguments
x |
|
... |
not used |
Value
NULL, printed to console
See Also
Examples
library(fnets)
## Alessi, Barigozzi, and Capasso method for restricted models
abc <- factor.number(data.restricted, fm.restricted = TRUE)
print(abc)
plot(abc)
## Eigenvalue ratio method
er <- factor.number(data.restricted, method = "er", fm.restricted = TRUE)
print(er)
plot(er)
## Hallin and Liška method for unrestricted models
hl <- factor.number(data.unrestricted, fm.restricted = FALSE)
print(hl)
plot(hl)
[Package fnets version 0.1.6 Index]