Join the conversation

great
Reply

great lecture sir g
Reply

I learned about Non-linear data Transformation using:
1: Box-Cox transformer (used for +ve values only)
2: Yeo-Johnson transformer
3: Quantile transformerStandardization is converting the whole data into a standard scale within a range and Normalization is converting only the individual samples to have the unit norm.
Reply

Done
Reply

Done
Reply

I have done this video with 100% practice.
Reply

I have done this lecture with 100% practice.
Reply

in this lecture, we normalized the data through box-cox, yeo-Jhonson and quantile transformation. If want to plot all columns in one code then we use for loop code
for col in df.columns:
sns.histplot(df[col], kde=true)
plt.show()
Reply