print-methods {robustfa} | R Documentation |
Print/Display an Object
Description
Print/display an object, including the Call, Standard deviations, Loadings.
Usage
print(x, ...)
Arguments
x |
an object of class |
... |
additional arguments, e.g., print.x=TRUE |
Value
An invisible argument x
.
Methods
- x = "Fa"
-
generic functions - see
print
,summary
,predict
,plot
,getCenter
,getEigenvalues
,getFa
,getLoadings
,getQuan
,getScores
,getSdev
- x = "SummaryFa"
-
generic functions - see
print
,summary
,predict
,plot
,getCenter
,getEigenvalues
,getFa
,getLoadings
,getQuan
,getScores
,getSdev
Author(s)
Ying-Ying Zhang (Robert) robertzhangyying@qq.com
References
Zhang, Y. Y. (2013), An Object Oriented Solution for Robust Factor Analysis.
See Also
Examples
data("hbk")
hbk.x = hbk[,1:3]
faCovPcaRegMcd = FaCov(x = hbk.x, factors = 2, method = "pca",
scoresMethod = "regression", cov.control = rrcov::CovControlMcd())
## you can use either object or print(object) or myFaPrint(object)
## since faCovPcaRegMcd is an object of class "Fa"
faCovPcaRegMcd
print(faCovPcaRegMcd)
myFaPrint(faCovPcaRegMcd)
[Package robustfa version 1.1-0 Index]