R substitua a corda em branco por Na
library(dplyr)
mutate_all(df, list(~na_if(.,"")))
Brave Beetle
library(dplyr)
mutate_all(df, list(~na_if(.,"")))