| Date | Max. wind speed (kts) |
|---|---|
| 2024-10-04 | 30 |
| 2024-10-05 | 35 |
| 2024-10-06 | 73 |
| 2024-10-07 | 155 |
| 2024-10-08 | 145 |
| 2024-10-09 | 140 |
| 2024-10-10 | 105 |
| 2024-10-11 | 60 |
EVR 628- Intro to Environmental Data Science
Rosenstiel School of Marine, Atmospheric, and Earth Science and Institute for Data Science and Computing

What to produce + content (markdown and/or R)
---
title: "This is my title"
subtitle: "And I can add a subtitle"
author: "Jon Doe"
institute: "University of whatever"
format: html
---
YAML header.key: value is name: "JC")| Markdown Syntax | Output |
|---|---|
Heading 1 |
|
Heading 2 |
|
Heading 3 |
|
Heading 4 |
|
Heading 5 |
|
Heading 6 |
Formatting text is easy:
*” to mark text as
*italics*, **bold**, ***bold italics*** become^” and “~” to make superscripts and subscripts
20^th^ century / CO~2~ become<https://jcvdav.github.io/EVR_628/> to produceClick [here](https://jcvdav.github.io/EVR_628/) and get
| Markdown Syntax | Output |
|---|---|
|
|
|
You can build tables by hand
| Right | Left | Default | Center |
|---|---|---|---|
| 12 | 12 | 12 | 12 |
| 123 | 123 | 123 | 123 |
| 1 | 1 | 1 | 1 |
: defines alignment of the cell contentsYou use single dollar signs to have “inline” math:
Pythagoras's theorem is $a^2 + b^2 = c^2$Or double dollar signs to have “display” math:
$$x = -b \pm \frac{\sqrt{(b^2 - 4ac)}}{2a}$$
renders as
\[x = -b \pm \frac{\sqrt{(b^2 - 4ac)}}{2a}\]
Full documentation here shows how to include:
You can embed R code that produces content in your Quarto file using code chunks:
```r
# Load packages
library(EVR628tools)
library(tidyverse)
library(knitr)
# Load data
data("data_milton")
# What am I doing here?
max_wind <- data_milton |>
mutate(date = date(iso_time)) |>
group_by(date) |>
summarize(max_wind = max(wind_speed))
# Build a table
kable(x = max_wind,
col.names = c("Date", "Max. wind speed (kts)"),
align = "ll")
```| Date | Max. wind speed (kts) |
|---|---|
| 2024-10-04 | 30 |
| 2024-10-05 | 35 |
| 2024-10-06 | 73 |
| 2024-10-07 | 155 |
| 2024-10-08 | 145 |
| 2024-10-09 | 140 |
| 2024-10-10 | 105 |
| 2024-10-11 | 60 |
It also works for figures:
```r
ggplot(data = max_wind,
aes(x = date, y = max_wind)) +
geom_line() +
geom_point(size = 3) +
theme_bw() +
labs(x = "Date",
y = "Max. wind speed (kts)")
```
my_site or website or something like that._quarto.yml file so that the first three lines look like this:More info here
my_site or website or something like that)main. And under folder select /docsusername.github.io/repo_nameMore info here.