Answers for "get a specific column value using pandas dataframe"

0

get value of a pd for specific values in column

df.loc[df['column_name'].isin(some_values)]
Posted by: Guest on April-23-2020
0

get particular columns from dataframe

x, y = df.iloc[:, [0]], df.iloc[:, [1]]
Posted by: Guest on October-27-2021

Code answers related to "get a specific column value using pandas dataframe"

Python Answers by Framework

Browse Popular Code Answers by Language