R-ecology-lesson
R-ecology-lesson copied to clipboard
Data Analysis and Visualization in R for Ecologists - the version at https://github.com/datacarpentry/R-ecology-lesson-alternative will be merged on 8th July 2024
To help students understand the process of multiple functions within a single pipeline, I recommend adding a few more operations in the ‘Pipes’ section. The lesson mentions in importance of...
Have you considered distributing the lesson's materials with `usethis::use_course()`? The __usethis__ package recently introduced (in v.1-3-0) the function `usethis::use_course()`. This may be a good way to distribute the materials of...
We did a workshop recently with an experimental setup where lessons were spread out in 2 hour sessions over 7 weeks instead of 2 days. the page for it was...
Added fix for issue #803 as part of the Carpentries instructor training checkout. See https://github.com/datacarpentry/R-ecology-lesson/issues/803
The line: ``` ggsave("plot_combined.png", plot_combined, width = 10, dpi = 300) ``` seems to be missing height parameters and doesn't plot correctly. Changing to: ``` ggsave("plot_combined.png", plot_combined, width = 15,...
Hey yall currently line 75 of the R ecology lesson says: The SQLite database is contained in a single file `portal_mammals.sqlite` that you generated during [the SQL lesson](https://datacarpentry.org/sql-ecology-lesson/00-sql-introduction/index.html). If you...
Colorblind learners cannot tell if their code works in the visualization episode. it would be good to also teach how to change the pallete to a friendly one or at...
Please delete the text below before submitting your contribution. Submission as part of checkout process for instructor training: I added explanations on what the pipe operator is in R based...
Please delete the text below before submitting your contribution. This pull request contains edits to the lesson suggested through a comment see link: https://github.com/datacarpentry/R-ecology-lesson/issues/778 Most of the edits to the...
In the Starting with Data Lesson, print(x, n) is repeatedly used, but when running it in my computer, the n argument seems to be ignored by R. For example, you...