-
Notifications
You must be signed in to change notification settings - Fork 4
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
Warning message with build_index #1
Comments
I am not familiar with the warning, but I suspect it is from the See: tidyverse/readr#1477 Or potentially dplyr when the disaggregated data frames are being stacked. I suspect it's harmless - for example integers and doubles mixing, which impacts representation in memory in R but would not change how the data would appear once written to a CSV file. But please let me know if you discover otherwise. |
Thanks Jesse, you are correct. It is a parsing problem in
Edit: I patched to the newest version that uses |
Ok, great. And yes, I updated the build_index() function so that all columns are loaded as strings (character vectors). Glad it worked! |
Hi @lecy et al.,
Thanks for your work on this package. I get a warning message that I did not get before:
> index <- build_index(tax.years = 2019)
What could be the reason for the warning? And is it safe to ignore it, as I end up with the index of 523,999 observations (only two observations short of the 524,001 it should find for 2019 according to the README)?
Thanks, Wim
The text was updated successfully, but these errors were encountered: