powered by
Fixes miscoded missing values
fix_NA( x, na.strings = c("^$", "^ $", "^\\?$", "^-$", "^\\.$", "^NaN$", "^NULL$", "^N/A$"), track = TRUE, parallel = TRUE )
A data.frame
Strings to be considered NA
Track changes?
Should the computations be performed in parallel? Set up strategy first with future::plan()
mydata <- data.frame(prueba = c("", NA, "A", 4, " ", "?", "-", "+"), casa = c("", 1, 2, 3, 4, " ", 6, 7)) fix_NA(mydata)
Run the code above in your browser using DataLab