Welcome To My Blog

news
Auteur

Tristan O’Malley

Publicatiedatum

20 november 2022

This is the first post in a Quarto blog. Welcome!

Since this post doesn’t specify an explicit image, the first image in the post will be used in the listing page of posts.

library(tidyverse)
── Attaching packages ─────────────────────────────────────── tidyverse 1.3.2 ──
✔ ggplot2 3.3.6      ✔ purrr   0.3.4 
✔ tibble  3.1.8      ✔ dplyr   1.0.10
✔ tidyr   1.2.1      ✔ stringr 1.4.1 
✔ readr   2.1.2      ✔ forcats 0.5.1 
── Conflicts ────────────────────────────────────────── tidyverse_conflicts() ──
✖ dplyr::filter() masks stats::filter()
✖ dplyr::lag()    masks stats::lag()
mtcars %>% 
  ggplot(aes(x = disp, y = hp)) +
  geom_point()