"""What does the Normalization & Standardization of Data basically means?"""
Normalization or standardization is defined as the process of rescaling original data without changing its behavior or nature. They are both part of preprocessing. What is N ormalization ? Normalization is one of the technique used in Data pre- procession. We define new boundary (mostly 0,1) and convert data accordingly. This technique is useful in classification algorithms involving neural network or distance based algorithm (e.g. KNN, K-means). It is also known as Min-Max scaling. Why is normalization important? Let’s understand it by an example. Suppose we are making some predictive model using dataset that contains the net worth of citizens of a country. For this dataset we find that there is large variation in data. If we feed this data to train any model, then it may generate some undesirable results. So, to get rid of that we opt normalization. What is Standardization? Data standardization is the process of rescaling one or more attributes so t...