tt(dat) |> group_tt(
j = list(
my_header = 1:3,
"Halloumi" = 4:5,
"Tofu" = 7))
results in a label spanning column 1, 2 and 3 named "my_header" instead of the desired "Hamburger".
Is there a way to have a spanning label resulting from code?
tt(dat) |> group_tt(
j = list(
my_header = 1:3,
"Halloumi" = 4:5,
"Tofu" = 7))
results in a label spanning column 1, 2 and 3 named "my_header" instead of the desired "Hamburger".
Is there a way to have a spanning label resulting from code?
tt(dat) |> group_tt(
j = list(
"Hamburgers" = 1:3,
"Halloumi" = 4:5,
"Tofu" = 7))
tt(dat) |> group_tt(
j = list(
"Hamburgers" = 1:3,
"Halloumi" = 4:5,
"Tofu" = 7))
But how can I style the borders? I can't find the way to colorize the border between the row with colnames and the added row with group names. Do you maybe have a suggestion?
But how can I style the borders? I can't find the way to colorize the border between the row with colnames and the added row with group names. Do you maybe have a suggestion?