vsp_fa {vsp} | R Documentation |
Create a vintage sparse factor analysis object
Description
vsp_fa
objects are a subclass of LRMF3::fa_like()
, with additional
fields u
, d
, v
, transformers
, R_U
, and R_V
Usage
vsp_fa(
u,
d,
v,
Z,
B,
Y,
transformers,
R_U,
R_V,
rownames = NULL,
colnames = NULL
)
Arguments
u |
A |
d |
A |
v |
A |
Z |
A matrix of embeddings for each observation. |
B |
A mixing matrix describing how observation embeddings and topics interact. Does not have to be diagonal! |
Y |
A matrix describing the compositions of various topics or factors. |
transformers |
A list of transformatioms from the invertiforms package. |
R_U |
Varimax rotation matrix use to transform |
R_V |
Varimax rotation matrix use to transform |
rownames |
Identifying names for each row of the original
data. Defaults to |
colnames |
Identifying names for each column of the original
data. Defaults to |
Value
A svd_fa
object.