Does drop_duplicates possible to use? #1995
Answered
by
Hasham04
tommyhj217
asked this question in
Q&A
-
Hi I checked below. Now I tired to use drop_duplicate but show below error.
Thanks |
Beta Was this translation helpful? Give feedback.
Answered by
Hasham04
Mar 31, 2022
Replies: 2 comments 1 reply
-
Do this |
Beta Was this translation helpful? Give feedback.
1 reply
Answer selected by
tommyhj217
-
There is no drop duplicates yet :) Indeed, the groupby is the current workaround. |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Do this
Vdf.groupby( list of columns to to use, agg={'__hidden_count': vaex.agg.count()}).drop('__hidden_count')
. Hope this helps.