Answers for "select a column as index pandas"

4

pandas select column by index

#    A  B  C
# 0  1  3  5
# 1  2  4  6

column_B = a_dataframe.iloc[:, 1]
print(column_B)

# OUTPUT
# 0    3
# 1    4
Posted by: Guest on May-31-2021

Code answers related to "select a column as index pandas"

Python Answers by Framework

Browse Popular Code Answers by Language