January 2019
Beginner to intermediate
336 pages
7h 58m
English
Let's now look at the data and its basic statistics using the following code:
# To take a look at the top 5 rows in the datasethousepricesdata.head(5)# To display the summary statistics for all variableshousepricesdata.describe()
Now let's see how many columns there are by datatype:
# How many columns with different datatypes are there?housepricesdata.get_dtype_counts()
The following code shows us how many variables there are for each datatype. We can see that we ...