homework #10 Quarto demo

Author

Adisa Trotter

Quarto

Quarto enables you to weave together content and executable code into a finished document. To learn more about Quarto see https://quarto.org.

We can do italics, bulleted lists

-first

-second and many other things

The coat of arms

My logo

Running Code

When you click the Render button a document will be generated that includes both content and the output of embedded code. You can embed code like this:

#| output: false

library(tidyverse)
Warning: package 'tibble' was built under R version 4.5.1
Warning: package 'purrr' was built under R version 4.5.1
── Attaching core tidyverse packages ──────────────────────── tidyverse 2.0.0 ──
✔ dplyr     1.1.4     ✔ readr     2.1.5
✔ forcats   1.0.0     ✔ stringr   1.5.1
✔ ggplot2   3.5.2     ✔ tibble    3.3.0
✔ lubridate 1.9.4     ✔ tidyr     1.3.1
✔ purrr     1.1.0     
── Conflicts ────────────────────────────────────────── tidyverse_conflicts() ──
✖ dplyr::filter() masks stats::filter()
✖ dplyr::lag()    masks stats::lag()
ℹ Use the conflicted package (<http://conflicted.r-lib.org/>) to force all conflicts to become errors
1 + 1
[1] 2

## Include a plot

::: {.cell fig=alt=‘more descriptive stuff here’}

Code
ggplot(diamonds, aes(x= cut)) +
  geom_bar()
Figure 1: A bar chart of diamonds cuts

:::

this is a reference: Figure 1. You can add options to executable code like this

##using LateX

We can put formulas inline like this: \(\alpha\) We indent like this

\[\pi \in \mathbb{R}\]

Google for more info and specific symbols.

[1] 4

The echo: false option disables the printing of code (only output is displayed).