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
changed method __getitem__ to use .mask directly (e.g. df.mask(df > 0) is equivalent semantically to df[df>0])
added inplace keyword to where method (to update the dataframe in place, default is NOT to use inplace, and return a new dataframe)
changed method _boolean_set_ to use where and inplace=True (this allows alignment of the passed values and is slightly less strict than the current method)
all tests pass (as well as an added test in boolean frame indexing)
0 commit comments