I am trying to run a principal axis factor analysis (pa) using the -fa- function from the -psych- package with no iteration. How can I go about doing this using the -fa- function?
I tried to solve this issue using the following code but I am getting the following messsage "maximum iteration exceeded".
fmodel3 <- fa(trening3_comp,
fm="pa",
nfactors = 2,
rotate = "none",
max.iter = 0
)