From d99fecc8aced34b1ee0d1196eca5c97447a498aa Mon Sep 17 00:00:00 2001 From: Chris Date: Mon, 17 Dec 2018 21:05:17 -0500 Subject: [PATCH] Add to overview section (#24921) --- guide/english/data-science-tools/pandas/index.md | 5 +++++ 1 file changed, 5 insertions(+) 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()