r dplyr Ajouter une ligne totale
x %>%
bind_rows(summarise(.,
across(where(is.numeric), sum),
across(where(is.character), ~"Total")))
Poised Plover