R/print.efa_schmid_leiman.R

Defines functions format.efa_schmid_leiman print.efa_schmid_leiman

Documented in format.efa_schmid_leiman print.efa_schmid_leiman

#' Print and format an efa_schmid_leiman object
#'
#' `print()` shows a summarised output of the [efa_schmid_leiman()] function: a
#' model header (when the settings are available), the Schmid-Leiman loading
#' matrix, and the variances accounted for. `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 (for example when captured into a file or stripped with
#' [cli::ansi_strip()]).
#'
#' @param x An object of class `efa_schmid_leiman` (output from
#'   [efa_schmid_leiman()]).
#' @param ... Not used; for consistency with the generic.
#'
#' @returns `print()` returns its argument `x` invisibly. `format()` returns a
#'   character vector with the report lines.
#'
#' @export
#' @method print efa_schmid_leiman
#'
#' @examples
#' EFA_mod <- efa_fit(test_models$baseline$cormat, N = 500, n_factors = 3,
#'                    estimator = "PAF", rotation = "promax")
#' sl_mod <- efa_schmid_leiman(EFA_mod, estimator = "PAF")
#' sl_mod
#'
#' # format() returns the same lines as a character vector:
#' writeLines(format(sl_mod))
#'
print.efa_schmid_leiman <- function(x, ...) {
  cat(format(x, ...), sep = "\n")
  invisible(x)
}

#' @rdname print.efa_schmid_leiman
#' @export
#' @method format efa_schmid_leiman
format.efa_schmid_leiman <- function(x, ...) {

  cli::cli_format_method({

    if (!all(is.na(x$settings))) {
      # extract the estimator of the second-order EFA
      estimator <- x$settings$estimator

      # Emitted verbatim (not via cli_text) so the "setting = 'value'" token is never split
      # across a line break; the bold value therefore uses style_bold() rather than {.strong}.
      # `.efa_wrap_chunks()` then packs the line to the console around that token.
      cli::cli_text("")
      cli::cli_verbatim(.efa_wrap_chunks(c(
        "EFA", "for", "second-order", "loadings", "performed", "with",
        paste0("estimator = '", cli::style_bold(estimator), "'")
      )))

      # Surface non-convergence of the second-order EFA, keyed on its convergence
      # code (with the iteration-count fallback), matching print.efa().
      if (.efa_iteration_nonconvergence(list(convergence = x$convergence,
                                             iter = x$iter,
                                             max_iter = x$settings$max_iter))) {
        cli::cli_text("")
        cli::cli_alert_danger(.efa_nonconvergence_banner(estimator))
      }
    }

    # print the loadings and the variances
    .print_efa_rule("Schmid-Leiman Solution")
    .efa_emit_lines(format(x$sl))

    .print_efa_rule("Variances Accounted for")
    .efa_emit_lines(.efa_corr_lines(x$vars_accounted, digits = 3))
  })
}

Try the EFAtools package in your browser

Any scripts or data that you put into this service are public.

EFAtools documentation built on Aug. 21, 2026, 5:16 p.m.