Introduction to R and RStudio
Figure 1

Figure 2

Project Management With RStudio
Figure 1

Seeking Help
Data Structures
Exploring Data Frames
Subsetting Data
Figure 1

Figure 2

Creating Publication-Quality Graphics with ggplot2
Figure 1

Figure 2

Figure 3

Figure 4

Figure 5

Figure 6

Figure 7

Figure 8

Figure 9

Figure 10

Figure 11

Figure 12

Figure 13

Figure 14

Figure 15

Figure 16

Figure 17

Figure 18

Figure 19

Writing Data
Data Frame Manipulation with dplyr
Figure 1
If we want to remove one column only from the
gapminder
data, for example, removing the continent
column.
Figure 2

Figure 3

Figure 4

Figure 5

Figure 6

Data Frame Manipulation with tidyr
Figure 1

Figure 2

Figure 3

Figure 4

Basic Statistics: describing, modelling and reportingDescribing dataInferential statisticsRegression Modelling
Figure 1

Figure 2

Figure 3

Figure 4

Figure 5

Logistic Regression
Figure 1
We can also look at where the specimens were processed:
Figure 2

Broom
Producing Reports With Quarto
Figure 1

Figure 2

Figure 3
RStudio versions 1.4 and later include visual markdown editing mode.
In visual editing mode, markdown expressions (like
**bold words**
) are transformed to the formatted appearance
(bold words) as you type. This mode also includes a
toolbar at the top with basic formatting buttons, similar to what you
might see in common word processing software programs. You can turn
visual editing on and off by pressing the
button in the top right corner of your R Markdown document.
SQL and R
Figure 1
These tables can be linked to each other when a field in one table can
be matched to a field in another table. To enable this one column in
each table is identified as a primary key. A primary key, often
designated as PK, is one attribute of an entity that distinguishes it
from the other entities (or records) in your table. The primary key must
be unique for each row for this to work. A common way to create a
primary key in a table is to make an ‘id’ field that contains an
auto-generated integer that increases by 1 for each new record. This
will ensure that your primary key is unique.
Figure 2
Relationships between entities and their attributes are represented by
lines linking them together. For example, the line linking amr and trust
is interpreted as follows: The ‘amr’ entity is related to the ‘trust’
entity through the attributes ‘trst_cd’ and ‘nhs_trust_code’
respectively.
Figure 3

Figure 4
You will
need to:
Best Practices for Writing R Code
Figure 1

Introduction to Reproducibility
Figure 1
They illustrated the differences between the terms with the following
diagram:
Figure 2
Image source:Key
challenges in epidemiology: embracing open science
Figure 3

Writing Good Software
Supplemental - Assumption Diagnostics and Regression Trouble Shooting
Figure 1

Figure 2

Figure 3

Figure 4

Figure 5

Figure 6
