Learn R Programming

robustfa (version 1.0-4)

detail: Show Details of an Object

Description

Show details of an object.

Usage

detail(x)

Arguments

x
Any R object to be tested.

Value

  • A list with components:
  • xThe argument x.
  • isS4Logical, indicates whether x is an S4 object.
  • isObjectLogical, indicates whether x is an object, i.e., with a class attribute.
  • classThe class of x.
  • attributesThe attributes of x. Usually result$attributes is also a list.

References

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

See Also

isS4, is.object, class, attributes

Examples

Run this code
data(stock611)
detail(stock611)

facovRegOgk=FaCov(x=scale(stock611[,3:12]), factors=3, cov.control = CovControlOgk(), 
scoresMethod = "regression"); facovRegOgk
detail(facovRegOgk)

Run the code above in your browser using DataLab