Modifier toutes les colonnes Type en R

library(dplyr)

# solution
dataset %>% mutate_if(is.character,as.numeric)
Jean Rodrigues