My First Blog Post

I created a website. Now, let me blog about it!
Quarto
R
Author
Published

November 29, 2023

Modified

December 6, 2023

For the past two years, I’ve been talking about starting a personal wesbite. This past week, I finally did by following this tutorial

To add a blog to the new website, I followed much of the information found in this post

Voila, a new website.

Now to include some executable code…

Code
iris %>% 
  ggplot(aes(x = Sepal.Length, y = Sepal.Width, color = Species)) +
  geom_point() +
  theme_classic(base_size = 18) +
  coord_fixed()