You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
# True for each row with body_mass_g greater than the min value of 285gsmaller_petals=df["body_mass_g"] >df["body_mass_g"].min()
# Lowest penguin weight out of all rows with weights above 285gdf.loc[smaller_petals, "body_mass_g"].min()
is a leftover from when this notebook was using the Iris dataset. It should be renamed to something penguin related, e.g. heavier_penguins
The text was updated successfully, but these errors were encountered:
The
smaller_petals
variable name here:is a leftover from when this notebook was using the Iris dataset. It should be renamed to something penguin related, e.g.
heavier_penguins
The text was updated successfully, but these errors were encountered: