Skip to content

Commit

Permalink
notes update
Browse files Browse the repository at this point in the history
  • Loading branch information
embyrne0 committed Dec 12, 2024
1 parent c07ddcd commit cfbf903
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions week_08/Case_study08.qmd
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ head(co2_data)
### Plot a timeseries
```{r}
# Plot the time series
ggplot(co2_data, aes(x = year, y = mean)) +
ggplot(co2_data, aes(x = year, y = mean)) + #use ggplot
geom_line(color = "blue") +
labs(title = "Mauna Loa CO2 Annual Mean Levels",
x = "Year",
Expand All @@ -53,7 +53,7 @@ co2_table <- co2_data %>%
co2_table
```
```{r}
```{r setup, include=FALSE, echo=FALSE, message=FALSE}
# Render the document in all specified formats
quarto::quarto_render("/Case_study08.qmd", output_format = "all")
```
Expand Down

0 comments on commit cfbf903

Please sign in to comment.