diff --git a/guide/english/data-science-tools/pandas/index.md b/guide/english/data-science-tools/pandas/index.md index 7acd6a26a6..eff8f0e041 100644 --- a/guide/english/data-science-tools/pandas/index.md +++ b/guide/english/data-science-tools/pandas/index.md @@ -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()