Recognizing missing values #296
Unanswered
jonathancallahan
asked this question in
Ideas
Replies: 0 comments
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
I have a csv file generated by R that uses NA as the missing value:
It would be nice if the
loadCSV()
function could accept an argument identifying missing value strings. Right now, theloadCSV()
function returns a table where any column that has a single NA values is parsed as aString
. The should be allNumber
except for the firstDate
column.In R,
read::read.csv()
has an argument for recognizing missing values:na = c("", "NA")
.Beta Was this translation helpful? Give feedback.
All reactions