Comment sous-ensemble un dataframe dans Python en fonction de plusieurs valeurs catégorielles

# Select the species and plot columns from the DataFrame
surveys_df[['species_id', 'plot_id']]

# What happens when you flip the order?
surveys_df[['plot_id', 'species_id']]

# What happens if you ask for a column that doesn't exist?
surveys_df['speciess']
Glamorous Gnat