Am I missing something to do this with gt()?
Seems straight forward but the closest answer I find still references it's own cell. I would like to stick with gt() if possible as ALL my other tables use it and I would like to have some consistency between reports.
dat <- data.frame(obs1 = LETTERS[1:5],
value1 = 1:5,
obs2 = LETTERS[6:10],
value2 = 5:1)
dat |>
gt() |>
???