Is there an equivalent dplyr
which does this? I'm after 'replace all' which matches string xxx with NA
is.na(df) <- df=="xxx"
I want to execute a sparklyr
command using the pipe function from R to Spark dataframe
tbl(sc,"df") %>%
and sticking the first script above doesn't work.