Skip to content

Commit

Permalink
Fix for issue rafaelvalero#6 _reliabili.py
Browse files Browse the repository at this point in the history
Fix for rafaelvalero#6 , adds argument to FactorAnalyzer call for group factors.
```
n_factors=self.n_factors_f,
```
  • Loading branch information
pmdscully authored Oct 17, 2023
1 parent 5cc6288 commit 7d99f07
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions reliabilipy/_reliabili.py
Original file line number Diff line number Diff line change
Expand Up @@ -182,6 +182,7 @@ def fit(self):
# Start Calculations
self.fa_f = FactorAnalyzer(rotation=self.rotation_fa_f,
method=self.method_fa_f,
n_factors=self.n_factors_f,
is_corr_matrix=True)
self.fa_f.fit(self.correlations_matrix)
self.fa_g = FactorAnalyzer(rotation=None,
Expand Down

0 comments on commit 7d99f07

Please sign in to comment.