selecting subset of data according to condintion in pandas

Solutions on MaxInterview for selecting subset of data according to condintion in pandas by the best coders in the world

showing results for - "selecting subset of data according to condintion in pandas"
Youcef
07 May 2016
1# selecting rows based on condition or filter rows in dataframe
2rslt_df = dataframe[dataframe['Percentage'] > 80]