These small snapshots ("vignettes") illustrate techniques in R
.
This information is mainly geared towards mathematical modellers but may be useful to others.
If you are registered in one of the courses I teach at the University of Manitoba in which I require R
coding, e.g., Mathematics of Data Science (MATH 2740), some of the vignettes are required material.
Slides are produced using Quarto and, for a few, using Sweave. Slide sources and all the code used are available on the GitHub repo. Feel free to use any material; if you find this useful, I will be happy to know, that's all.
Material here is inherently work in progress. I will be updating the vignettes from time to time to reflect a better understanding of the material, new packages, etc. The vignettes and videos vary greatly in length. Their order is not relevant and somewhat random.
When present, the YouTube logo points to the video of the vignette. Those vignettes for which a video is available are more complete than those without.
{% assign pdf_files = site.static_files | where: "extname", ".pdf" %} {% assign qmd_files = site.pages | where_exp: "page", "page.path contains '.qmd'" %}
-
{% for qmd_file in qmd_files %}
{% assign has_pdf_version = false %}
{% capture q_file %} {{ qmd_file.name | remove: ".qmd" }} {% endcapture %}
{% for pdf_file in pdf_files %}
{% capture p_file %} {{ pdf_file.name | remove: ".pdf" }} {% endcapture %}
{% if p_file contains q_file or q_file contains p_file or p_file == q_file %}
{% assign has_pdf_version = true %}
{% endif %}
{% endfor %}
{% if has_pdf_version %}
- {{ qmd_file.long-title }} {% else %}
- {{ qmd_file.long-title }}
{% endif %}
{% if qmd_file.youtube %}
{% endif %}
{% endfor %}
I have started preparing some lectures that take a transversal approach, digging into one topic in detail using a variety of techniques illustrated in the vignettes above. For the time being, there is a single such lecture here, but I aim to make others. (If you have a request for a topic, feel free to get in touch.)
- Basic computational analysis of a model. Note that this is work in progress.
Je prévois de traduire les vignettes en français, mais cela prendra du temps. En attendant, si vous avez des questions, n'hésitez pas à me contacter.