Quarto Demo

Author

Michael C. Frank

library(palmerpenguins)

Attaching package: 'palmerpenguins'
The following objects are masked from 'package:datasets':

    penguins, penguins_raw
library(tidyverse)

Quarto demo

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

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:

Graphs

Here are the penguins!

head(penguins)
# A tibble: 6 × 8
  species island    bill_length_mm bill_depth_mm flipper_length_mm body_mass_g
  <fct>   <fct>              <dbl>         <dbl>             <int>       <int>
1 Adelie  Torgersen           39.1          18.7               181        3750
2 Adelie  Torgersen           39.5          17.4               186        3800
3 Adelie  Torgersen           40.3          18                 195        3250
4 Adelie  Torgersen           NA            NA                  NA          NA
5 Adelie  Torgersen           36.7          19.3               193        3450
6 Adelie  Torgersen           39.3          20.6               190        3650
# ℹ 2 more variables: sex <fct>, year <int>
ggplot(penguins, 
       aes(x = bill_length_mm, y = bill_depth_mm, 
           col = species)) + 
  geom_point()
Warning: Removed 2 rows containing missing values or values outside the scale range
(`geom_point()`).

Executable options

You can add options to executable code like this

[1] 4

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