January 2019
Beginner to intermediate
336 pages
7h 58m
English
Now, let's perform some data manipulation steps:
housepricesdata = pd.read_csv("HousePrices.csv")
# See first five observations from tophousepricesdata.head(5)
You might not be able to see all the rows; Jupyter will truncate some of the variables. In order to view all of the rows and columns for any output in Jupyter, execute the following commands:
# Setting options to display all rows and columns pd.options.display.max_rows = None pd.options.display.max_columns = None