# Preprocessing allows us to standarsize our data from sklearn import preprocessing # define standard scaler scaler = StandardScaler() # transform data scaled = scaler.fit_transform(data)