March 2020
Beginner to intermediate
352 pages
8h 40m
English
Let's see some sample data from the red wine dataframe. Remember, we can use different methods to see the data from a dataframe, including pd.head(), pd.tail(), and pd.iloc():
df_red.iloc[100:110]
The output of the preceding code is given here:

df_red.dtypes
The output of the preceding code is as follows:
fixed acidity float64volatile acidity float64citric acid ...
Read now
Unlock full access