Answers for "how to round to column to next integer in r"

C++
-1

how to round all numeric column types in r

library(dplyr)
df %>% 
 mutate_if(is.numeric, round)
Posted by: Guest on November-17-2020

Code answers related to "how to round to column to next integer in r"

Browse Popular Code Answers by Language