Question: Suppose we have a panda data frame called df and we want to normalize the price column using min- max normalisation. Fill in the blank
Suppose we have a panda data frame called df and we want to normalize the price column using min- max normalisation. Fill in the blank the code to create a normalisation; Min_price = min(df[price]) Max_price = max(df[price]) Df[norm_price] = df[price].apply(lambda x:)
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
