Home

Hello and welcome to Griffin’s Place! Here you can find my writing and work.

You can view my projects where I present code and products relating to data science, software engineering, and technical communication.

You can view my articles where I write in an academic style creating tutorials and educational content.

You can view my notes where I write in short, bullet lists covering books, courses, and podcasts.

You can view my blog where I write in an informal style discussing productivity, self-reflection, and other topics.

Categories, code annotations, contents, date, date-format

library(ggplot2)

ggplot(airquality, aes(Temp, Ozone)) + 
1  geom_point() +
  geom_smooth(method = "loess")
1
Much more in depth explanation
Figure 1: Temperature and ozone level.