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
91
91
with the expected factor loading relationships. This can be done using
92
92
the ``ModelSpecificationParser `` class.
93
93
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
+
94
97
Examples
95
98
--------
96
99
Original file line number Diff line number Diff line change 1
1
{% set name = "factor_analyzer" %}
2
- {% set version = "0.3.1 " %}
2
+ {% set version = "0.3.2 " %}
3
3
{% set file_ext = "tar.gz" %}
4
4
{% set hash_type = "sha256" %}
5
5
{% set hash_value = "94ea4c7d46e846cc7174787adce47156cf58dc257905c878edc5181b4fa300ed" %}
@@ -21,14 +21,14 @@ build:
21
21
22
22
requirements :
23
23
build :
24
- - python= =3.6
24
+ - python > =3.6
25
25
- setuptools
26
26
- pandas
27
27
- scipy
28
28
- numpy
29
29
- scikit-learn
30
30
run :
31
- - python= =3.6
31
+ - python > =3.6
32
32
- pandas
33
33
- scipy
34
34
- numpy
Original file line number Diff line number Diff line change @@ -16,7 +16,7 @@ def requirements():
16
16
17
17
18
18
setup (name = 'factor_analyzer' ,
19
- version = '0.3.1 ' ,
19
+ version = '0.3.2 ' ,
20
20
description = 'A Factor Analysis class' ,
21
21
long_description = readme (),
22
22
keywords = 'factor analysis' ,
@@ -40,5 +40,6 @@ def requirements():
40
40
'Programming Language :: Python :: 3.4' ,
41
41
'Programming Language :: Python :: 3.5' ,
42
42
'Programming Language :: Python :: 3.6' ,
43
+ 'Programming Language :: Python :: 3.7' ,
43
44
],
44
45
zip_safe = True )
You can’t perform that action at this time.
0 commit comments