I have a situation where I need to remove some duplicates from a dataset. For example, i need to remove 4 of the 8 records that have the same record ID. Is there a better way to do this than simply filtering to the record ID and using the sample tool? I'm trying to figure out the best way to do this. Obviously the unique tool won't work. Thanks in advance.
| record id | count should be | count is |
| 1 | 2 | 4 |
| 2 | 4 | 8 |
| 3 | 4 | 8 |
| 4 | 8 | 16 |