Project - Forecast Bike Rentals

3 / 38

End to End Project - Bikes Assessment - Basic - Importing the libraries

To start with the code, we would need some libraries. Please import the same into the environment, as per instructions mentioned below in Instructions box.

INSTRUCTIONS

Please import the required libraries as mentioned below:

  1. Import numpy as np
  2. Import pandas as pd
  3. From sklearn import preprocessing
  4. Please import StandardScaler from Scikit Learn - preprocessing
  5. Please import mean_squared_error from Scikit Learn - metrics
  6. Please import linear_model from Scikit Learn
  7. Please import matplotlib's pyplot as plt
  8. Import os
  9. set random seed as follows:

    np.random.seed(42)
    

Please complete the code to import these libraries.

Get Hint See Answer


Note - Having trouble with the assessment engine? Follow the steps listed here

Loading comments...