| print.efa_power | R Documentation |
print() turns an efa_power() result into a short report, and format()
builds the same report as a character vector (print() is
cat(format(x), sep = "\n")).
## S3 method for class 'efa_power'
print(x, digits = 3, ...)
## S3 method for class 'efa_power'
format(x, digits = 3, ...)
x |
An object of class |
digits |
Integer. The number of decimal places the reported values are rounded to. Default is 3. |
... |
Not used; for consistency with the generic. |
For an RMSEA-mode object, the report has a header naming the test, the null and alternative hypotheses with the significance level and degrees of freedom, the headline result (the power at the sample size, or the required sample size for the target power), and the critical value and noncentrality parameters.
For a simulation-mode object, the report instead has the population and design, the retention hit-rate per criterion, the structure-recovery rate, and the convergence and Heywood-case rate.
The lines follow the active console theme, so they print as plain text when
colours are disabled – for example when captured into a file, or stripped with
cli::ansi_strip().
print() returns its argument x invisibly. format() returns a
character vector with the report lines.
Other power analysis:
efa_power(),
plot.efa_power()
pw <- efa_power(df = 100, N = 200)
pw
# format() returns the same lines as a character vector:
writeLines(format(pw))
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.