-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtemplate.qmd
More file actions
55 lines (42 loc) · 1.23 KB
/
template.qmd
File metadata and controls
55 lines (42 loc) · 1.23 KB
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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
---
title: "Report Title"
subtitle: "Subtitle"
author: "Data and Performance Team (OEWD)"
date: "`r Sys.Date()`"
embed-resources: true
format:
oewd-report-html: default
output-file: "REPORT_TITLE"
execute:
echo: false
warning: false
message: false
---
```{r}
library(gt)
library(tidyverse)
```
# Overview
Unordered list:
- Item 1
- Item 2
::: callout-note
This is a callout note.
:::
Icons from the SF Design System are available via shortcode:
{{< sficon wip >}}
{{< sficon globe color=green >}}
# Analysis
```{r}
#| fig.cap: 'Figure 1: MPG vs horsepower, colored by transmission.'
mtcars2 <- mtcars
mtcars2$am <- factor(
mtcars$am, labels = c('automatic', 'manual')
)
ggplot(mtcars2, aes(hp, mpg, color = am)) +
geom_point() + geom_smooth() +
theme(legend.position = 'bottom')
```
# About this Report
This HTML report was created with [Quarto.](https://quarto.org/) The data within is self-contained and cannot be updated automatically. If you bookmark the report within your browser, be aware that the bookmark URL references a file path on your computer; moving the document to a different location will break the bookmark.
{fig-align="center" width="225"}