What is the difference between “Count” and “Unique Count” in the Group By node?
Unique count only considers non-repeated items:
count([1, 2, 3, 1, 2, 3, 1, 2, 3]) = 9
uniqueCount([1, 2, 3, 1, 2, 3, 1, 2, 3]) = 3
What is the difference between “Count” and “Unique Count” in the Group By node?
Unique count only considers non-repeated items:
count([1, 2, 3, 1, 2, 3, 1, 2, 3]) = 9
uniqueCount([1, 2, 3, 1, 2, 3, 1, 2, 3]) = 3