429529f89b33ecf478de61445a64590ac77746d4,factor_analyzer/factor_analyzer.py,FactorAnalyzer,analyze,#FactorAnalyzer#Any#Any#Any#Any#Any#Any#Any#Any#,613
Before Change
[1] https://www.rdocumentation.org/packages/psych/versions/1.7.8/topics/Promax
if rotation not in {"varimax", "promax", None}:
raise ValueError("The value for `rotation` must be in the "
"set: {"varimax", "promax", None}.")
df = data.copy()
// remove non-numeric columns
df = self.remove_non_numeric(df)
After Change
[1] https://www.rdocumentation.org/packages/psych/versions/1.7.8/topics/Promax
if rotation not in POSSIBLE_ROTATIONS + [None]:
raise ValueError("The value for `rotation` must `None` or in the "
"set: {}.".format(", ".join(POSSIBLE_ROTATIONS)))
df = data.copy()
// remove non-numeric columns
df = self.remove_non_numeric(df)
In pattern: SUPERPATTERN
Frequency: 3
Non-data size: 9
Instances
Project Name: EducationalTestingService/factor_analyzer
Commit Name: 429529f89b33ecf478de61445a64590ac77746d4
Time: 2018-05-21
Author: jbiggs@ets.org
File Name: factor_analyzer/factor_analyzer.py
Class Name: FactorAnalyzer
Method Name: analyze
Project Name: dnouri/skorch
Commit Name: 53ef00376510ee9ba4506918db06b25dad4a7ea4
Time: 2017-07-31
Author: benjamin.bossan@ottogroup.com
File Name: inferno/callbacks.py
Class Name: BestLoss
Method Name: initialize
Project Name: pantsbuild/pants
Commit Name: f9b1009b40b31d4dc7e71b558e0056488e904175
Time: 2014-08-21
Author: jinfeng@outlook.com
File Name: src/python/pants/backend/core/tasks/targets_help.py
Class Name: TargetsHelp
Method Name: console_output