how to select subset of dataframe rows python condition code example
Example: selecting subset of data according to condintion in pandas
# selecting rows based on condition
rslt_df = dataframe[dataframe['Percentage'] > 80]
# selecting rows based on condition
rslt_df = dataframe[dataframe['Percentage'] > 80]