Join GitHub today
GitHub is home to over 50 million developers working together to host and review code, manage projects, and build software together.
Sign upFeature Request: When all values are NA, don't warn that parse_date_time didn't parse #530
Comments
|
Good point. It's an inconsistency indeed. |
The reporting of formats failing to parse is a bit inconsistent. When all values passed to parse_date_time are NA, the warning of "all formats failed to parse" is given. When some (but not all) are NA, no warning is given for the NA values even though technically it's the same type of issue.
Feature request: If all values are NA, do not warn that all formats failed to parse. (I know I could use the
quietargument to silence the warning, but I want the warning in the case of actual parsing errors.)