mirror of
https://git.freebsd.org/ports.git
synced 2025-04-28 01:26:39 -04:00
11 lines
206 B
Text
11 lines
206 B
Text
```{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")
|
|
```
|