Answers for "create dataframe and select row python"

2

select rows from dataframe pandas

from pandas import DataFrame

boxes = {'Color': ['Green','Green','Green','Blue','Blue','Red','Red','Red'],
         'Shape': ['Rectangle','Rectangle','Square','Rectangle','Square','Square','Square','Rectangle'],
         'Price': [10,15,5,5,10,15,15,5]
        }

df = DataFrame(boxes, columns= ['Color','Shape','Price'])

select_color = df.loc[df['Color'] == 'Green']
print (select_color)
Posted by: Guest on June-07-2020
0

generating datafraoms using specific row values

options = [list of specific row entries]
rslt_df = dataframe[dataframe['column_name'].isin(options)]
Posted by: Guest on July-01-2020

Code answers related to "create dataframe and select row python"

Python Answers by Framework

Browse Popular Code Answers by Language