Answers for "select columns according to dtype pandas"

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
0

Select a Column in pandas data Frame notation

df.favorite food
Posted by: Guest on August-09-2021

Code answers related to "select columns according to dtype pandas"

Python Answers by Framework

Browse Popular Code Answers by Language