Skip to content

Instantly share code, notes, and snippets.

@kiddojazz
Created January 15, 2023 16:34
Embed
What would you like to do?
#Scale the data
scaler = MinMaxScaler(feature_range=(0,1))
scaled_data = scaler.fit_transform(dataset)
scaled_data
#Scaling the data means you are actually standardizing your data
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment