-
-
Notifications
You must be signed in to change notification settings - Fork 71
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
Handle new default stringsAsFactors setting in R v4.0.0 #74
Conversation
Line 67: when reading the data frame we need to add the stringAsFactors = TRUE because of the recent change from the default option TRUE to FALSE in R version 4.0.0. If we do not do that, all the examples in the lesson regarding factors would not be able to be used.
Thanks for catching this! Definitely needs a fix. I wonder if this is a big enough gotcha that we should give it a special "warning" call-out box instead of an inline code comment carpentries/styles#49 |
|
See also, datacarpentry/R-ecology-lesson#608 |
Hi @jsta , What's the status with this PR? Can it be integrated, closed or is it part of a bigger project around R 4.0? |
I think it can be merged for now. My suggestion is that a future PR be opened more strongly warning about the change to |
Merging this in advance of the lesson infrastructure transition. |
update Zenodo JSON since #74 was merged
Handle new default stringsAsFactors setting in R v4.0.0
update Zenodo JSON since #74 was merged
Line 67: when reading the data frame we need to add the stringAsFactors = TRUE because of the recent change from the default option TRUE to FALSE in R version 4.0.0. If we do not do that, all the examples in the lesson regarding factors would not be able to be used.