Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion LICENSE.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
BSD 3-Clause License

Copyright (c) 2018-2021 The Feature-engine developers.
Copyright (c) 2018-2022 The Feature-engine developers.
All rights reserved.

Redistribution and use in source and binary forms, with or without
Expand Down
7 changes: 5 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
[![DOI](https://joss.theoj.org/papers/10.21105/joss.03642/status.svg)](https://doi.org/10.21105/joss.03642)


[<img src="./docs/images/logo/FeatureEngine.png" width="248">](http://feature-engine.readthedocs.io)
[<img src="https://github.com/feature-engine/feature_engine/blob/main/docs/images/logo/FeatureEngine.png" width="248">](http://feature-engine.readthedocs.io)

Feature-engine is a Python library with multiple transformers to engineer and select features for use in machine learning models.
Feature-engine's transformers follow Scikit-learn's functionality with fit() and transform() methods to learn the
Expand Down Expand Up @@ -120,6 +120,9 @@ transforming parameters from the data and then transform it.
* RecursiveFeatureAddition
* DropHighPSIFeatures

### Datetime
* DatetimeFeatures

### Preprocessing
* MatchVariables

Expand Down Expand Up @@ -218,5 +221,5 @@ BSD 3-Clause

## Donate

[Sponsor the maintainer](https://github.com/sponsors/solegalli) to support her continue expanding
[Sponsor us](https://github.com/sponsors/solegalli) to support her continue expanding
Feature-engine.
1 change: 1 addition & 0 deletions docs/resources/blogs.rst
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@ Blogs
Videos
------

- `Streamlining Feature Engineering Pipes with Feature-engine <https://www.youtube.com/watch?v=0V3_uXX30Ko>`_, Data Science Festival, 2020.
- `Optimising Feature Engineering Pipelines with Feature-engine <https://www.youtube.com/watch?v=qT-3KUaFYmk/>`_, Pydata Cambridge 2020, from minute 51:43.


Expand Down
2 changes: 1 addition & 1 deletion docs/user_guide/selection/DropHighPSIFeatures.rst
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
6).. _psi_selection:
.. _psi_selection:

.. currentmodule:: feature_engine.selection

Expand Down
2 changes: 2 additions & 0 deletions feature_engine/selection/drop_psi_features.py
Original file line number Diff line number Diff line change
Expand Up @@ -65,6 +65,8 @@ class DropHighPSIFeatures(BaseSelector):
values in the list, will go to the basis set, and the remaining ones to the test
set.

More details in the :ref:`User Guide <psi_selection>`.

References
----------
https://scholarworks.wmich.edu/cgi/viewcontent.cgi?article=4249&context=dissertations
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
# Package meta-data.
NAME = "feature_engine"
DESCRIPTION = "Feature engineering package with Scikit-learn's fit transform functionality"
URL = "http://github.com/solegalli/feature_engine"
URL = "http://github.com/feature-engine/feature_engine"
EMAIL = "solegalli@protonmail.com"
AUTHOR = "Soledad Galli"
REQUIRES_PYTHON = ">=3.6.0"
Expand Down