Code has been added to clipboard!

Filtering Data With Pandas Groupby

Example
df_filtered = df.query('Salary > 30000')
print(df_filtered)