Is there any way to filter duplicated values of a dimension using crossfilter?
For example I want to filter the duplicated records by the id dimension
id value
1 5
2 7
2 7
And I want to obtain
id value
1 5
2 7
It is important tonote that I dont want to group them by id I just want to filter out the duplicated records. Is this possible?
Thank a lot