Answers for "display certain columns pandas"

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 "display certain columns pandas"

Python Answers by Framework

Browse Popular Code Answers by Language