So let's say I have a character vector of length 150000. Strings in the vector are not unique, in fact they're sorta normally distributed with the most frequent string being present 28 times, another 24, and over 1000 present more than 5 times. I want to divide the vector into 28 smaller vectors, distributing the strings among the smaller vectors such that no string is present more than twice in each smaller vector, ideally only once (or not present). I need to preserve every string, so I can't just do !duplicated() Ideally the vectors would be about the same size.
How the heck would I do this?
I'm thinking something like start adding to the first vector until you encounter the first non-unique string, skip it, continue filling skipping non-unique strings until you've reached 150000/28 = 5357, then proceed through the other vectors the same way, removing strings from the parent vector once they've been allocated to a smaller one? Any issues with this? Efficient ways of doing it without a nasty forest of for loops?