Using the example on gtsummarytbl_summary page (http://www.danieldsjoberg.com/gtsummary/articles/tbl_summary.html):
trial %>%
select(trt, marker, stage)
tbl_summary(trial2)
Is it possible to change the names of the rows under trt? For example the table above gives trt as DrugA and DrugB. But could I have it labelled in the summary table as "cisplatin" for DrugA and "carboplatin" for DrugB, without changing the data frame?