Welcome To My Blog

Data Science
R
Quarto
Author

bdav56

Published

May 22, 2024

This is the first blog post. I’m attempting to experiment with r-coding here to see how it looks in html format. I also did a snapshot with renv() to experiment with package management.

Code
library(tidyverse)

cars %>%
  ggplot(aes(x = dist, y = speed)) +
  geom_point(color = "blue") +
  labs(title = "Test Plot",
       subtitle = "Data from Cars Dataset \n",
       x = "Distance",
       y = "Speed") +
  theme_minimal()