Answers for "how to check the dtype of columns in a dataframe pandas"

15

how to check datatype of column in dataframe python

df['DataFrame Column'].dtypes
Posted by: Guest on August-20-2020
2

get columns based on dtype pandas

>>df.select_dtypes(include='object').columns

Index(['C', 'D'], dtype='object')
Posted by: Guest on March-16-2021

Code answers related to "how to check the dtype of columns in a dataframe pandas"

Python Answers by Framework

Browse Popular Code Answers by Language