Home > Software engineering >  How best to do the row groupings in GT?
How best to do the row groupings in GT?

Time:09-07

First, I am looking at this article (enter image description here


If we don't want tab_row_group, just do a group_by and convert to gt

test %>% 
   select(-order2) %>%
   group_by(area2) %>%
   gt()

-output

enter image description here

  • Related