Learn R Programming

robustfa (version 1.0-4)

show-methods: Show/Print/Display an Object

Description

Show/print/display an object, including the Call, Standard deviations, Loadings.

Usage

show(object)

Arguments

object
an object of class "SummaryFa", "Fa", or of a class derived from "Fa".

Value

  • An invisible argument object.

References

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

See Also

Fa-class, SummaryFa-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