Answers for "get columns of dataframe"

3

get column number in dataframe pandas

# PANDAS: get column number from colomn name
dataframe.columns.get_loc("<col_name>")
Posted by: Guest on February-22-2020
7

pd dataframe get column names

lst = data.columns.values     # data is dataframe
Posted by: Guest on April-27-2020
1

how to find columns of a dataframe

list(my_dataframe.columns.values)
Posted by: Guest on June-23-2020
1

print columns pandas

df = pd.DataFrame(exam_data , index=labels)

# print the columns labeled "name" and "score"
print(df[['name', 'score']])
Posted by: Guest on August-10-2020

Code answers related to "get columns of dataframe"

Python Answers by Framework

Browse Popular Code Answers by Language