-
-
Notifications
You must be signed in to change notification settings - Fork 18.7k
Closed
Labels
Milestone
Description
Currently masking by boolean vectors it doesn't matter which syntax you use:
df[mask]
df.iloc[mask]
df.loc[mask]
are all equivalent. Should mask df.iloc[mask]
mask by position? (this makes sense if mask is integer index).
This SO question.