Learn R Programming

twidlr (version 0.0.0.9000)

factanal: data.frame-first formula-second method for

Description

This function passes a data.frame, formula, and additional arguments to factanal.

Usage

factanal(data, formula = ~., ...)

# S3 method for factanal predict(object, data, ...)

Arguments

data
Data frame (or object that can be coerced to one) containing the variables in the model
formula
A formula (or object that can be coerced to one) with no response variable (optional). If omitted, all variables in "data" will be included.
...
Additional arguments to pass to model function
object
Fitted model

See Also

factanal

Examples

Run this code
factanal(mtcars, factors = 3)

fit <- factanal(mtcars, ~ hp*am*wt, factors = 3)
predict(fit, mtcars[1:5, ])

Run the code above in your browser using DataLab