Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

na.strings may fail to convert numbers into NAs in dev #2222

Closed
st-pasha opened this issue Jun 28, 2017 · 0 comments
Closed

na.strings may fail to convert numbers into NAs in dev #2222

st-pasha opened this issue Jun 28, 2017 · 0 comments
Milestone

Comments

@st-pasha
Copy link
Contributor

st-pasha commented Jun 28, 2017

This case is working :

> fread("A,B\n1987,1\n1987,3\n", na.strings=c("1987", "NA"))
    A B
1: NA 1
2: NA 3

this one isn't in dev:

> fread("A,B\n1987,1\n1,3\n", na.strings=c("1987", "NA"))
      A B
1: 1987 1
2:    1 3

It's ok on CRAN.

@mattdowle mattdowle added this to the v1.10.6 milestone Jun 28, 2017
@mattdowle mattdowle changed the title na.strings may fail to convert numbers into NAs na.strings may fail to convert numbers into NAs in dev Jun 28, 2017
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

No branches or pull requests

2 participants