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
Copy file name to clipboardExpand all lines: docs/blogs.rst
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -9,7 +9,7 @@ Blogs
9
9
- `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/>`_.
10
10
- `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/>`_.
11
11
- `Streamlining Feature Engineering Pipelines with Feature-engine <https://towardsdatascience.com/streamlining-feature-engineering-pipelines-with-feature-engine-e781d551f470?gi=e0fa6e5c0c1a/>`_.
12
-
- `Feature Engineering for Machine Learning: A comprehensive Overvoew<https://www.trainindatablog.com/feature-engineering-for-machine-learning-comprehensive-overview/>`_.
12
+
- `Feature Engineering for Machine Learning: A comprehensive Overview<https://www.trainindatablog.com/feature-engineering-for-machine-learning-comprehensive-overview/>`_.
13
13
- `Feature Selection for Machine Learning: A comprehensive Overview <https://www.trainindatablog.com/feature-selection-for-machine-learning-comprehensive-overview/>`_.
Copy file name to clipboardExpand all lines: examples/creation/MathematicalCombination.ipynb
+16-10Lines changed: 16 additions & 10 deletions
Original file line number
Diff line number
Diff line change
@@ -578,7 +578,7 @@
578
578
")\n",
579
579
"\n",
580
580
"\n",
581
-
"# Fit the Mean Combinator on training data\n",
581
+
"# Fit the Combinator to the training data\n",
582
582
"multiple_combinator.fit(data)\n",
583
583
"\n",
584
584
"# Transform the data\n",
@@ -793,11 +793,12 @@
793
793
"metadata": {},
794
794
"source": [
795
795
"We can put all these transformations into single pipeline:\n",
796
+
"\n",
796
797
"1. Create new variables\n",
797
798
"2. Scale features\n",
798
-
"3. Apply simple LogisticRegression classifier to predict the wine quality range\n",
799
+
"3. Train a Logistic Regression model to predict wine quality\n",
799
800
"\n",
800
-
"See more on how to use Piplines in these **[examples](https://github.com/solegalli/feature_engine/tree/master/examples/Pipelines)**"
801
+
"See more on how to use Feature-engine within Scikit-learn Pipelines in these **[examples](https://github.com/solegalli/feature_engine/tree/master/examples/Pipelines)**"
801
802
]
802
803
},
803
804
{
@@ -838,12 +839,12 @@
838
839
"outputs": [],
839
840
"source": [
840
841
"value_pipe = pipe([\n",
841
-
" # Create two new features using the min and max combinators\n",
0 commit comments