Feature Scaling in Machine Learning-Introduction

[This article was first published on Data Analysis in R » Quick Guide for Statistics & R » finnstats, and kindly contributed to R-bloggers]. (You can report issue about the content on this page here)
Want to share your content on R-bloggers? click here if you have a blog, or here if you don't.

The post Feature Scaling in Machine Learning-Introduction appeared first on finnstats.

If you want to read the original article, click here Feature Scaling in Machine Learning-Introduction.

Feature Scaling in Machine Learning is a strategy for putting the data’s independent features into a set range. It’s done as part of the data pre-processing.

Given a data set with features like Age, Income, and brand, with a total population of 5000 persons, each with these independent data elements.

The following are the labels for each data point:

• Class 1- YES (means with the given Age, Income, brand feature value one can buy the property)

• Class2- NO (meaning that the property cannot be purchased based on the specified Age, Income, and brand feature value).

Sentiment analysis in R » Complete Tutorial » finnstats

Using a dataset to train the model, the goal is to create a model that can predict whether or not a property can be purchased based on certain feature values.

An N-dimensional (where N is the number of features included in the dataset) graph with data points from the given dataset can be constructed once the model has been trained.

The model is depicted in the diagram below in its perfect form. 

feature scaling in machine learning

Feature Scaling in Machine Learning

As illustrated in the diagram, star data points represent Class1 – Yes labels, whereas circles represent Class2 – No labels and these data points are used to train the model.

Now there is a new data point (a diamond in the figure) with varied independent values for the three attributes (Age, Income, and brand) described before.

The model must determine if this data point is in the Yes or No category.

Bagging in Machine Learning Guide » finnstats

Prediction of the new data point class:

The model determines the distance between this data point and each class group’s centroid.

Finally, this data point will be assigned to the class with the shortest centroid distance.

These approaches can be used to calculate the distance between the centroid and the data point.

Euclidean Distance -The square root of the sum of squares of differences between the coordinates (feature values – Age, Income, brand) of each data point and the centroid of each class is the Euclidean Distance.

where x is the data point value, y is the centroid value, and k is the number of feature values, for example, the following data set contains k = 3 feature values.

Bias Variance Tradeoff Machine Learning Tutorial » finnstats

Manhattan’s Length: The sum of absolute differences between the coordinates (feature values) of each data point and the centroid of each class is used to calculate it.

Minkowski Distance: This is a combination of the two approaches above.

Feature Scaling is Required: The given data set has three features: Age, Income, and brand. Consider a range of twenty to sixty years old, one to forty thousand dollars in Income, and one to five bedrooms in a flat. All of these characteristics are distinct from one another.

Boosting in Machine Learning-Complete Guide » finnstats

Assume the data point to be predicted is [60, 35Lacs, 3], and the centroid of class 1 is [50, 25Lacs, 3].

Using the Manhattan Technique,

Distance = (|(60 - 50)| + |(2500000 - 3500000)| + |(3 - 3)|)

It can be observed that the Income feature will outperform all other characteristics in predicting the class of a given data point because all of the features are independent of one another,

i.e. a person’s income has nothing to do with his or her age or the type of flat he or she needs.

This implies that the model will always be inaccurate in its predictions.

Principal Component Analysis in R » finnstats

Feature scaling is a straightforward solution to this problem. Age, Income, and brand will be scaled in a set range, such as [-1, 1] or [0, 1]. Then no feature may take precedence over the others.

To read more visit Feature Scaling in Machine Learning-Introduction.

If you are interested to learn more about data science, you can find more articles here finnstats.

The post Feature Scaling in Machine Learning-Introduction appeared first on finnstats.

To leave a comment for the author, please follow the link and comment on their blog: Data Analysis in R » Quick Guide for Statistics & R » finnstats.

R-bloggers.com offers daily e-mail updates about R news and tutorials about learning R and many other topics. Click here if you're looking to post or find an R/data-science job.
Want to share your content on R-bloggers? click here if you have a blog, or here if you don't.

Never miss an update!
Subscribe to R-bloggers to receive
e-mails with the latest R posts.
(You will not see this message again.)

Click here to close (This popup will not appear again)