Software carpentry - R workshop
07/04/2025
Workshop links - https://anatmela.github.io/20250407-RWorkshop/
Share document - https://etherpad.opendev.org/p/rworkshop20250407
Carpentries code of conduct - https://docs.carpentries.org/policies/coc/
R
Rstudio
Workshop links - https://anatmela.github.io/20250407-RWorkshop/
Share document - https://etherpad.opendev.org/p/rworkshop20250407
Carpentries code of conduct - https://docs.carpentries.org/policies/coc/
R
Rstudio
The type of data you are trying to interpret will determine which plot type you should use and which statistical tests may be informative.
create graphics from your data by adding layers
ggplot(data, mapping = aes()) + # initialise
geom_<geom name>() + # actual type of plot (can have > 1)
scale_<which scale>_<type of data> # optional
(can set for each scale in aes)
other layers which can be
added (used for further refinement of the plot):
- facets
- labs
- theme
- guides
- annotate