Learn R Programming

EFAtools (version 1.1.0)

print.efa_control: Print and format a control object

Description

print() shows the chosen type and each tuning knob, with an unset (NA) preset-driven knob marked as resolved from the type preset. format() assembles the same report and returns it as a character vector; print() is cat(format(x), sep = "\n"). The lines follow the active console theme, so they are plain when colours are disabled.

Usage

# S3 method for efa_estimate_control
print(x, ...)

# S3 method for efa_estimate_control format(x, ...)

# S3 method for efa_rotate_control print(x, ...)

# S3 method for efa_rotate_control format(x, ...)

Value

print() returns its argument x invisibly. format() returns a character vector with the report lines.

Arguments

x

A control object from estimate_control() or rotate_control().

...

Not used; for consistency with the generic.

See Also

estimate_control(), rotate_control()

Other Control functions: estimate_control()

Examples

Run this code
est <- estimate_control(type = "SPSS")
est
writeLines(format(est))

Run the code above in your browser using DataLab