Solution Review: Reading Auto MPG Dataset
This lesson provides the solution to the previous challenge.
We'll cover the following...
We'll cover the following...
Reading the Dataset #
According to the problem statement, we need to get the shape of Auto MPG Dataset as an output. In the code above, at line 1, we imported the pandas module for reading the dataset. Next, we implemented the function read_csv().
Look at its header at line 3. At line 6, we set the name of the ...