File tree Expand file tree Collapse file tree 3 files changed +8
-4
lines changed
conda-recipe/factor_analyzer Expand file tree Collapse file tree 3 files changed +8
-4
lines changed Original file line number Diff line number Diff line change @@ -91,6 +91,9 @@ Performing CFA requires users to specify in advance a model specification
9191with the expected factor loading relationships. This can be done using
9292the ``ModelSpecificationParser `` class.
9393
94+ Note that the ``ConfirmatoryFactorAnalyzer `` class is very experimental at this point,
95+ so use it with caution, especially if your data are highly non-normal.
96+
9497Examples
9598--------
9699
Original file line number Diff line number Diff line change 11{% set name = "factor_analyzer" %}
2- {% set version = "0.3.1 " %}
2+ {% set version = "0.3.2 " %}
33{% set file_ext = "tar.gz" %}
44{% set hash_type = "sha256" %}
55{% set hash_value = "94ea4c7d46e846cc7174787adce47156cf58dc257905c878edc5181b4fa300ed" %}
@@ -21,14 +21,14 @@ build:
2121
2222requirements :
2323 build :
24- - python= =3.6
24+ - python > =3.6
2525 - setuptools
2626 - pandas
2727 - scipy
2828 - numpy
2929 - scikit-learn
3030 run :
31- - python= =3.6
31+ - python > =3.6
3232 - pandas
3333 - scipy
3434 - numpy
Original file line number Diff line number Diff line change @@ -16,7 +16,7 @@ def requirements():
1616
1717
1818setup (name = 'factor_analyzer' ,
19- version = '0.3.1 ' ,
19+ version = '0.3.2 ' ,
2020 description = 'A Factor Analysis class' ,
2121 long_description = readme (),
2222 keywords = 'factor analysis' ,
@@ -40,5 +40,6 @@ def requirements():
4040 'Programming Language :: Python :: 3.4' ,
4141 'Programming Language :: Python :: 3.5' ,
4242 'Programming Language :: Python :: 3.6' ,
43+ 'Programming Language :: Python :: 3.7' ,
4344 ],
4445 zip_safe = True )
You can’t perform that action at this time.
0 commit comments