Answers for "access column of dataframe"

2

pandas df by row index

indices = [133, 22, 19, 203, 14, 1]
df_by_indices = df.iloc[indices, :]
Posted by: Guest on October-22-2020
0

how to access pandas column

#columns in Pandas documentation 
#import numpy as np
import pandas as pd
a = pd.DataFrame()
b = pd.DataFrame([[1,2,3,4],[5,6,7,8],[2,7,3,23],[3,6,8,23],[23,23,63,12]],columns=['A', 'B', 'C', 'D'])
print(b)
Posted by: Guest on July-13-2021

Code answers related to "access column of dataframe"

Python Answers by Framework

Browse Popular Code Answers by Language