Answers for "return column in dataframe by column name python"

7

pd dataframe get column names

lst = data.columns.values     # data is dataframe
Posted by: Guest on April-27-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 "return column in dataframe by column name python"

Python Answers by Framework

Browse Popular Code Answers by Language