parse_time() does not handle NA as I would expect. Very simple to reproduce:
parse_time('NA')
Error: Invalid token
parse_integer('NA')
[1] NA
Looks like there might be a missing break statement here:
https://github.com/hadley/readr/blob/master/src/Collector.cpp:355
parse_time() does not handle NA as I would expect. Very simple to reproduce:
Looks like there might be a missing break statement here:
https://github.com/hadley/readr/blob/master/src/Collector.cpp:355