Skip to content

Instantly share code, notes, and snippets.

@gcgbarbosa
Created August 22, 2024 18:37
Show Gist options
  • Save gcgbarbosa/526c155c01489319b0ed4c9082e32268 to your computer and use it in GitHub Desktop.
Save gcgbarbosa/526c155c01489319b0ed4c9082e32268 to your computer and use it in GitHub Desktop.
hello quarto
---
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