Exercise

Scaling II

You'll now apply a scaler to the dataset, which is available for you as environment.

Remember that Scaling helps the algorithm converge faster, and avoids having one dominant feature heavily influence the outcomes.

Instructions

100 XP
  • Initialize a StandardScaler and store it as sc.
  • Fit the scaler to environment.
  • Scale environment and store the result as environ_scaled.
  • Convert the scaled data back to a DataFrame, using the same columns and index than the original DataFrame.