I would like to assign groups to larger groups in order to assign them to cores for processing. I have 16 cores.This is what I have so far
test<-data_extract%>%group_by(group_id)%>%sample_n(16,replace = TRUE) 
This takes staples OF 16 from each group.
This is an example of what I would like the final product to look like (with two clusters),all I really want is for the same group id to belong to the same cluster as a set number of clusters
________________________________
balance   | group_id |  cluster|
454452    | a        |  1      |
5450441   | a        |  1      |
5444531   | b        |  1      |
5404051   | b        |  1      |
5404501   | b        |  1      |
5404041   | b        |  1      |
544251    | b        |  1      |
254252    | b        |  1      |
541254    | c        |  2      |
54123254  | d        |  1      |
542541    | d        |  1      |
5442341   | e        |  2      |
541       | f        |  1      |
________________________________
