-
Notifications
You must be signed in to change notification settings - Fork 1.3k
TabularData: Add ignore_empty flag to drop_duplicates. #7064
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Conversation
70769af to
b2c7623
Compare
drop_duplicates for rich_text NaN.|
If the problem here is that
Looking at the code it looks like the 2nd option is what is supposed to be happening (@skshetry?), so my understanding is that |
That's not the problem. The table is being filled with a mix of This is addressed in the first commit b09d353
The
For some use cases, could be considered all duplicates because
I prefer this option. Was trying to not introduce many changes here but it's probably the way to go. |
Ah ok, that makes sense then.
After reading your explanation, I think this PR is probably fine for now, maybe just open a separate issue regarding making As a side note, I would say that NaN is not the same thing as a |
b2c7623 to
7c2c194
Compare
When filling missing values with `ui.rich_text` (i.e. in experiments show CMD), those values were not being correctly matched against `self._fill_value`)
7c2c194 to
c37db07
Compare
Configures whether to consider missing values as relevant or not.
c37db07 to
251b931
Compare
TabularData: Add ignore_empty flag to drop_duplicates
TabularData: Fix drop_duplicates for rich_text NaN