SMT() has been superseded by efa_smt(), which is the recommended interface
going forward. It remains available and unchanged so existing code keeps working.
SMT(
x,
N = NA,
use = c("pairwise.complete.obs", "all.obs", "complete.obs", "everything",
"na.or.complete"),
cor_method = c("pearson", "spearman", "kendall", "poly", "tetra")
)An object of class efa_retention, identical to the value of
efa_smt(); see there for the components.
data.frame or matrix. Dataframe or matrix of raw data or matrix with correlations.
numeric. The number of observations. Needs only be specified if a correlation matrix is used. Must be larger than the number of variables.
character. Passed to stats::cor() if raw
data is given as input. Default is "pairwise.complete.obs".
character. One of "pearson", "spearman", or "kendall",
passed to stats::cor(). "poly" and "tetra" are not supported because
SMT rests on a normal-theory chi-square test that is not valid for
polychoric / tetrachoric correlations.
Default is "pearson".
efa_smt()