Creating a frequency table with bolded grand total

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()

This topic was automatically closed 21 days after the last reply. New replies are no longer allowed.

If you have a query related to it or one of the replies, start a new topic and refer back with a link.