End-to-End ML Project - California Housing

4 / 17

End to End ML Project - Load the dataset

Now let's load the dataset. The dataset is located in the following path:

/cxldata/datasets/project/housing/housing.csv

INSTRUCTIONS
  • Set HOUSING_PATH variable to the path of the dataset as given above

    HOUSING_PATH = <<your code goes here>>
    
  • Read the dataset using the read_csv function of Pandas

    housing = pd.<<your code goes here>>(HOUSING_PATH)
    
  • Display the first few rows of the dataset using the head method

    housing.<<your code goes here>>()
    
See Answer

No hints are availble for this assesment


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

Loading comments...