You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
* first draft smart corr
* add smart corr to init
* final edits
* add tests
* fix mypy error
* finishes docs and docstrings
* change wording fit, transform methods
* fix typo in docs
* rebase master and unifies params with other selectors
* fix test
- `Feature-engine: A new open-source Python package for feature engineering <https://www.trainindatablog.com/feature-engine-a-new-open-source-python-package-for-feature-engineering/>`_.
83
83
- `Practical Code Implementations of Feature Engineering for Machine Learning with Python <https://www.trainindatablog.com/practical-code-implementations-of-feature-engineering-for-machine-learning-with-python/>`_.
@@ -90,23 +90,6 @@ En Español:
90
90
More resources in the **Learning Resources** sections on the navigation panel on the
91
91
left.
92
92
93
-
Contributing
94
-
------------
95
-
96
-
Interested in contributing to Feature-engine? That is great news!
97
-
98
-
Feature-engine is a welcoming and inclusive project and it would be great to have you
99
-
on board. We follow the
100
-
`Python Software Foundation Code of Conduct <http://www.python.org/psf/codeofconduct/>`_.
101
-
102
-
Regardless of your skill level you can help us. We appreciate bug reports, user testing,
103
-
feature requests, bug fixes, addition of tests, product enhancements, and documentation
104
-
improvements. We also appreciate blogs about Feature-engine. If you happen to have one,
105
-
let us know!
106
-
107
-
For more details on how to contribute check the contributing page. Click on the
108
-
"Contributing" page on the left of this page.
109
-
110
93
111
94
Feature-engine's Transformers
112
95
-----------------------------
@@ -173,6 +156,7 @@ Feature Selection:
173
156
- :doc:`selection/DropConstantFeatures`: drops constant and quasi-constant variables from a dataframe
174
157
- :doc:`selection/DropDuplicateFeatures`: drops duplicated variables from a dataframe
175
158
- :doc:`selection/DropCorrelatedFeatures`: drops correlated variables from a dataframe
159
+
- :doc:`selection/SmartCorrelatedSelection`: selects best feature from correlated group
176
160
- :doc:`selection/SelectByShuffling`: selects features by evaluating model performance after feature shuffling
177
161
- :doc:`selection/SelectBySingleFeaturePerformance`: selects features based on their performance on univariate estimators
178
162
- :doc:`selection/SelectByTargetMeanPerformance`: selects features based on target mean encoding performance
@@ -199,6 +183,23 @@ Check if there's already an open `issue <https://github.com/solegalli/feature_en
199
183
on the topic. If not, open a new `issue <https://github.com/solegalli/feature_engine/issues/>`_
200
184
with your bug report, suggestion or new feature request.
201
185
186
+
Contributing
187
+
------------
188
+
189
+
Interested in contributing to Feature-engine? That is great news!
190
+
191
+
Feature-engine is a welcoming and inclusive project and it would be great to have you
192
+
on board. We follow the
193
+
`Python Software Foundation Code of Conduct <http://www.python.org/psf/codeofconduct/>`_.
194
+
195
+
Regardless of your skill level you can help us. We appreciate bug reports, user testing,
196
+
feature requests, bug fixes, addition of tests, product enhancements, and documentation
197
+
improvements. We also appreciate blogs about Feature-engine. If you happen to have one,
198
+
let us know!
199
+
200
+
For more details on how to contribute check the contributing page. Click on the
201
+
"Contributing" link on the left of this page.
202
+
202
203
203
204
Open Source
204
205
-----------
@@ -211,6 +212,7 @@ The `issues <https://github.com/solegalli/feature_engine/issues/>`_ and
211
212
`pull requests <https://github.com/solegalli/feature_engine/pulls>`_ are tracked there.
0 commit comments