/r4ds

Working through R for Data Science

Primary LanguageR

R4DS Chapter 1

Jared Harris

Quarto

Here’s a plot:

library(ggplot2)

ggplot(diamonds, aes(price, carat)) +
  geom_point()