This is an example of a research project.
I did some stuff, loaded some data, plotted some graphs.
Overview
This is just a really brief demo of plotting a graph
── Attaching packages ─────────────────────────────────────── tidyverse 1.3.2 ──
✔ ggplot2 3.3.6 ✔ purrr 0.3.4
✔ tibble 3.1.8 ✔ dplyr 1.0.9
✔ tidyr 1.2.0 ✔ stringr 1.4.0
✔ readr 2.1.2 ✔ forcats 0.5.2
── Conflicts ────────────────────────────────────────── tidyverse_conflicts() ──
✖ dplyr::filter() masks stats::filter()
✖ dplyr::lag() masks stats::lag()
iris %>%
ggplot(aes(x = Sepal.Length, y = Petal.Length, colour = Species )) +
geom_point()
We learned some interesting things