Created
August 22, 2024 18:37
-
-
Save gcgbarbosa/526c155c01489319b0ed4c9082e32268 to your computer and use it in GitHub Desktop.
hello quarto
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
--- | |
title: "ggplot2 demo" | |
author: "Norah Jones" | |
date: "5/22/2021" | |
format: | |
html: | |
fig-width: 8 | |
fig-height: 4 | |
code-fold: true | |
--- | |
## Air Quality | |
@fig-airquality further explores the impact of temperature on ozone level. | |
```{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") | |
``` |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment