Need to replace Null ( blank) value in data3sixty... column data is in string format
Hi, and welcome!
This is a bit ambiguous without a reprex. See FAQ: What's a reproducible example (`reprex`) and how do I do one?.
reprex
However, assuming that you have a variable with cells equal to "" you can mutate
""
mutate
mydata %>% mutate(variable = ifelse(variable == "", NA, variable))
This topic was automatically closed 21 days after the last reply. New replies are no longer allowed.