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()