Skip to content

Commit b0fbc41

Browse files
authored
Final Scaling Techniques
1 parent ca2062d commit b0fbc41

File tree

1 file changed

+13
-0
lines changed

1 file changed

+13
-0
lines changed

Feature_Scaling/README.md

+13
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,19 @@
88
* Therefore, the range of all features should be normalized so that each feature contributes approximately proportionately to the final distance.
99
Another reason why feature scaling is applied is that gradient descent converges much faster with feature scaling than without it
1010

11+
## Before Scaling
12+
1. Orginal Data Set Distribution![](https://github.com/reddyprasade/Machine-Learning-with-Scikit-Learn-Python-3.x/blob/master/img/Feature%20Scaling/UnScaling%20Data.svg)
13+
## After Scaling
14+
1. Standard Scaler ![](https://github.com/reddyprasade/Machine-Learning-with-Scikit-Learn-Python-3.x/blob/master/img/Feature%20Scaling/Standard%20Scaler%20Data.svg)
15+
2. Min_Max_scaler ![](https://github.com/reddyprasade/Machine-Learning-with-Scikit-Learn-Python-3.x/blob/master/img/Feature%20Scaling/MinMaxScaler%20Data.svg)
16+
3. Robust Scaler ![](https://github.com/reddyprasade/Machine-Learning-with-Scikit-Learn-Python-3.x/blob/master/img/Feature%20Scaling/RobustScaler%20Data.svg)
17+
4. MaxAbsScaler![](https://github.com/reddyprasade/Machine-Learning-with-Scikit-Learn-Python-3.x/blob/master/img/Feature%20Scaling/MinMaxScaler%20Data.svg)
18+
5. PowerTransformer(Box Cox)![](https://github.com/reddyprasade/Machine-Learning-with-Scikit-Learn-Python-3.x/blob/master/img/Feature%20Scaling/Power%20Transofmation%20Box%20Cox%20transforms.svg)
19+
6. PowerTransformer(Yeo-Johnson)![](https://github.com/reddyprasade/Machine-Learning-with-Scikit-Learn-Python-3.x/blob/master/img/Feature%20Scaling/Yeo-Johnson.svg)
20+
7. Quantile_transform_uniform![](https://github.com/reddyprasade/Machine-Learning-with-Scikit-Learn-Python-3.x/blob/master/img/Feature%20Scaling/QuantileTransformer%20(uniform).svg)
21+
8. Quantile_transform_Gaussian![](https://github.com/reddyprasade/Machine-Learning-with-Scikit-Learn-Python-3.x/blob/master/img/Feature%20Scaling/QuantileTransformer%20(uniform).svg)
22+
9. Normalizer![](https://github.com/reddyprasade/Machine-Learning-with-Scikit-Learn-Python-3.x/blob/master/img/Feature%20Scaling/Normilizer.svg)
23+
1124

1225
### Reference
1326
1. [Wiki](https://en.wikipedia.org/wiki/Feature_scaling)

0 commit comments

Comments
 (0)