summaryrefslogtreecommitdiff
path: root/textproc/quarto/files/example-r-airquality.qmd
blob: 95f94c5f8647069130a79834ec2211f3a7777ab8 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
```{r}
#| label: fig-airquality
#| fig-cap: "Temperature and ozone level."
#| warning: false

library(ggplot2)

ggplot(airquality, aes(Temp, Ozone)) + 
  geom_point() + 
  geom_smooth(method = "loess")
```