R Ganti string kosong dengan Na

library(dplyr)

mutate_all(df, list(~na_if(.,"")))
Brave Beetle