myFaPrint {robustfa} | R Documentation |
Show/Print/Display an Object
Description
Show/print/display an object, including the Call, Standard deviations, Loadings, and Rotated variables (if print.x = TRUE
).
Usage
myFaPrint(object, print.x=FALSE)
Arguments
object |
an object of class |
print.x |
Logical. If |
Value
An invisible argument object
.
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]