Removes all but the first occurrence of each key. Columns not included in the `group_key` are discarded.
(self, group_key: Vec<usize>)
| 1384 | /// Removes all but the first occurrence of each key. Columns not included |
| 1385 | /// in the `group_key` are discarded. |
| 1386 | pub fn distinct_by(self, group_key: Vec<usize>) -> Self { |
| 1387 | self.reduce(group_key, vec![], None) |
| 1388 | } |
| 1389 | |
| 1390 | /// Discards rows with a negative frequency. |
| 1391 | pub fn threshold(self) -> Self { |
no test coverage detected