Set tabgroup labels for a page
set_tabgroup_labels.page_object.RdCustomize tab labels with icons or different text.
Examples
if (FALSE) { # \dontrun{
create_page("Analysis", data = gss, type = "bar") %>%
add_viz(x_var = "degree", tabgroup = "demographics") %>%
add_viz(x_var = "happy", tabgroup = "wellbeing") %>%
set_tabgroup_labels(
demographics = "{{< iconify ph:users-fill >}} Demographics",
wellbeing = "{{< iconify ph:heart-fill >}} Wellbeing"
)
} # }