I realize setting skipNul = TRUE
in read.csv()
and read.table()
skips over/ignores "embedded nulls" (see ?read.csv
and Get "embedded nul(s) found in input" when reading a csv using read.csv()).
What does skipping/ignoring embedded nulls mean for the resulting data in R? I expect R's "skipping" or "ignoring" them means they're kept as text strings, when they would ideally show up as NA
values, except the na.strings
argument wasn't sufficient to catch them.