Answers for "get column of df without title"

12

python return column names of pandas dataframe

# Basic syntax:
your_dataframe.columns

# Note, if you want the column names as a list, just do:
list(your_dataframe.columns)
Posted by: Guest on October-30-2020
0

how to get column names having numeric value in pandas

cols = df.select_dtypes([np.number]).columns
Posted by: Guest on November-28-2020

Python Answers by Framework

Browse Popular Code Answers by Language