You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
read_csv() reads a string that contains a - always as a date, e.g. 3-19, but throws an error because the date is not complete. In the dataset I'm using, this denotes an ID string, however, and should be preserved as a string.
> df <- read_csv("test.csv")
Warning message:
1 problems parsing 'test.csv'. See problems(...) for more details.
> problems(df)
Source: local data frame [1 x 4]
row col expected actual
1 1 1 date like %Y-%m-%d 3-19
Now, this ends up as NA:
> df
Source: local data frame [1 x 2]
id value
1 <NA> 5
The text was updated successfully, but these errors were encountered:
read_csv()
reads a string that contains a-
always as a date, e.g.3-19
, but throws an error because the date is not complete. In the dataset I'm using, this denotes an ID string, however, and should be preserved as a string.Here's a minimal working example:
This produces:
Now, this ends up as
NA
:The text was updated successfully, but these errors were encountered: