Data Standardization
Another approach to scale the data is to standardize it: transform in such a way that mean
is equal to 0 and std
is equal to 1. Look at the formula:
Here ΞΌ is a mean value of x and Ο is a standard deviation. This way, we move each value such that total mean is 0, and normalize it with std
, so new std is equal to 1.
Swipe to start coding
Standardize the data in SibSp
column by calculating mean and std values and use the formula above. Output some sample to see the modified data and check if the new values of mean
and std
are equal to 0 and 1 respectively.
Solution
Thanks for your feedback!
single
Ask AI
Ask AI
Ask anything or try one of the suggested questions to begin our chat
Awesome!
Completion rate improved to 5.56
Data Standardization
Swipe to show menu
Another approach to scale the data is to standardize it: transform in such a way that mean
is equal to 0 and std
is equal to 1. Look at the formula:
Here ΞΌ is a mean value of x and Ο is a standard deviation. This way, we move each value such that total mean is 0, and normalize it with std
, so new std is equal to 1.
Swipe to start coding
Standardize the data in SibSp
column by calculating mean and std values and use the formula above. Output some sample to see the modified data and check if the new values of mean
and std
are equal to 0 and 1 respectively.
Solution
Thanks for your feedback!
Awesome!
Completion rate improved to 5.56single