-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathreport_draft.qmd
39 lines (27 loc) · 1008 Bytes
/
report_draft.qmd
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
---
title: "Random ESR report"
format: html
editor: visual
---
```{r}
#| label: load-packages
#| include: false
library(tidyverse)
library(palmerpenguins)
library(plotTimeSeries)
```
## Introduction
Here I'm going to tell you some really neat things about this ecosystem I'm working on.
Even though we study subtropical systems, we're going to look at some penguins because I am failing to make any other visualization appear right now.
![](https://raw.githubusercontent.com/quarto-dev/quarto-web/main/docs/get-started/hello/rstudio/lter_penguins.png)
## Indicator 1
Here are some sea surface tempertature trends. Wow - it's getting so hot!
![](//blob/main/gom_sst_anomalies/gom_sst_anom_mth.png)
```{r}
#| label: plot-penguins
#| warning: false
#| echo: false
load("indicator_data/Carib_SST.RData")
plotIndicatorTimeSeries(s, coltoplot = 1:3, plotrownum = 3, dateformat = "%m-%Y", sublabel = T,
trendAnalysis = T, widadj = 0.5, anom = "mon", type = "allLines", hgtadj = 0.8)
```