-
Notifications
You must be signed in to change notification settings - Fork 1
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Bug: n_factors_f
is not being used in FactorAnalyzer model fitting.
#6
Comments
Fix for rafaelvalero#6 , adds argument to FactorAnalyzer call for group factors. ``` n_factors=self.n_factors_f, ```
Thanks let me try locally and update version on pip |
Fix for issue #6 `n_factors_f` not used.
Thanks, new version ready: https://pypi.org/project/reliabiliPy/0.0.36/ |
Done |
Great stuff. As with the Psyche R library implementation for Omega, I think it is important to show underlying model fitness before presenting an Omega result; so I will look at adding those fit indices (similarly to semopy) into the FA library. Then, from It all seems to depend on how easily a 'null-model' (flat) can be implemented and evaluated by FA. Let's see.. |
Bug:
n_factors_f
is not forwarded to theFactorAnalyzer
modelling process for group factors; and therefore the code always fits for3
factors only. - Here's an example of code and outputs in colab.Fix: add 1 line (an extra argument) into the call for group factors, around lines 183-185, as below:
I have recompiled the .pyc and tested this. It should be a straightforward fix.
P.s. - Thanks for your work on this project, I've included your citation in our upcoming report. All the best.
The text was updated successfully, but these errors were encountered: