Learn R Programming

robustfa (version 1.0-4)

myFaPrint: 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 "Fa" or of a class derived from "Fa".
print.x
Logical. If print.x = TRUE, then print the rotated variables (scores).

Value

  • An invisible argument object.

References

Zhang, Y. Y. (2013), An Object Oriented Solution for Robust Factor Analysis.

See Also

Fa-class

Examples

Run this code
data("hbk")
hbk.x = hbk[,1:3] 

faCovPcaRegMcd = FaCov(x = hbk.x, factors = 2, method = "pca",
scoresMethod = "regression", cov.control = CovControlMcd())

## object=show(object)=print(object)=myFaPrint(object)
## faCovPcaRegMcd is an object of class "Fa"
faCovPcaRegMcd
show(faCovPcaRegMcd)
print(faCovPcaRegMcd)
myFaPrint(faCovPcaRegMcd)

Run the code above in your browser using DataLab