-
-
Notifications
You must be signed in to change notification settings - Fork 506
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
Easy to make read_csv typo results in different data #553
Comments
Perhaps we could create a dataset where whether we use read.csv or read_csv we get the same solution...particularly because it is a fairly easy fix and it can really sidetrack instructors/students from getting at the meat of the lesson. I'll try to work on a PR that does this. |
Thanks @ryanpeek. If we could fix those entries in the dataset, that would be good and help with that confusion for instructors and students. It would be good to keep the overall number of rows the same because those are referenced in other parts of the lesson. We would need to update the dataset on Figshare, but we can do that. |
Hi folks (@tracykteal @fmichonneau) , The only thing that needs to be updated is the barplot figure in the "starting with data lesson". I'm not sure how the overall R-ecology site is built/knitted, but if someone reknits the Rmd it should take care of itself (no code changes needed). The code I used to make this change and write it out is below, let me know if you all need anything else! :)
|
addressed with #663 |
This is really just a note for the future.
At STAMPS we were teaching section 3 of this lesson, and some people were getting a different number of rows after this command.
This is a result of a simple typo using
read.csv
instead ofread_csv
which results in a dataframe with a different number of rows.The text was updated successfully, but these errors were encountered: