Feature normalization

Report a typo

Normalize the features of the dataframe X by using the MinMaxScaler with the default parameters. Print out the transformed data.

Write a program in Python 3
import pandas as pd

X = pd.DataFrame({"Area": [6574, 7865, 9832], "room_number": [5, 6, 9]})
___

Create a free account to access the full topic