Hi, I would like to be able to place a bold formatted grand total at the bottom of a nicely formatted data frame. Here is what I have now. I have the Grand Total but I can't figure out how to bold it.
I am happy replacing any of the packages I've used here with something else if that's easier.
library(tidyverse)
library(formattable)
library(janitor)
data(iris)
iris %>%
group_by(Species) %>%
summarise(n) %>%
adorn_totals() %>%
formattable()