apa_loadings: print loadings

View source: R/tables.R

apa_loadingsR Documentation

print loadings

Description

print loadings

Usage

apa_loadings(
  fit,
  sort_loading = TRUE,
  min_loading = 0.2,
  column_formats = NULL,
  complexity = FALSE,
  uniqueness = FALSE
)

Arguments

fit

model fit object

sort_loading

sort table using psych::fa.sort

min_loading

minimum loading to display

column_formats

column_formats object to format columns. If NULL, the default column_formats is used.

complexity

print complexity column in factor analysis table

uniqueness

print uniqueness column in factor analysis table

Value

tibble

Examples

fit <- psych::fa(Harman74.cor$cov, 4, fm = "pa",rotate = "varimax")
apa_loadings(fit) |>
  `colnames<-`(c("Tests", "Verbal", "Spatial", "Quantitative", "Memory")) |>
  apa_flextable()

apa7 documentation built on May 26, 2026, 5:07 p.m.