Extract Fitted Correlation Matrix or Residuals

DESCRIPTION:
Returns the estimated correlation function or the residuals from the estimated correlation function.

USAGE:
fitted.factanal(object)
residuals.factanal(object)

REQUIRED ARGUMENTS:
object:
an object of class "factanal".

VALUE:
fitted.factanal returns a matrix that is the estimated correlation matrix based on the factor analysis model.

residuals.factanal returns a matrix which is the difference between the actual correlation matrix and the fitted matrix returned by fitted.factanal.


SEE ALSO:
factanal .

EXAMPLES:
prim9.fa3 <- factanal(prim9, 3)

fitted(prim9.fa3) residuals(prim9.fa3)