Add to overview section (#24921)

This commit is contained in:
Chris
2018-12-17 21:05:17 -05:00
committed by Christopher McCormack
parent 844405a4e9
commit d99fecc8ac

View File

@ -45,6 +45,11 @@ df.tail()
```
This will show the last 5 rows of the data frame.
To see the data types of each column in your dataframe, use the 'dtypes' method:
```python
df.dtypes()
```
To show descriptive statistics, such as the shape and central tendency of the dataset, the `describe` method can be used:
```python
df.describe()