I have a .csv dataset with many missing values, and I\'d like R to recognize them all the same way (the \"correct\" way) when I read the table in. I\'ve been using:
You can also use the more flexible readr package, whose equivalent function and argument are read_csv() and na.
readr
read_csv()
na
library(readr) read_csv("file.csv", na = c(".", ".."))