STAT 205

Demo of Quarto

Author
Affiliation

Irene Vrbik (studentID)

University of British Columbia Okanagan

Published

February 26, 2025

Introduction

This is a demo done in STAT 205 to learn about Quarto. Let’s add some more text.

Check out Figure 1.

Level two Header

Some more text.

this is a quote

A ordered list

  1. one
  2. two
  3. three

this is a picture of a woman

this is me

Working with code

Here I will make a code “chunk”

# some simple caculation
2 + 2
[1] 4

I’m going to give some code chunk options, to change out the input/output are displayed (these are set using #| at the top of the chunk.

Code
# some simple caculation
2 + 2
[1] 4
Code
x = 8
y = 5
z = x + y
print(x)
[1] 8

This is an example of inline code:

The current value stored for x is 8.

Figures

I’m going to make a simple scatter plot

Figure 1: This is a boring plot

Reading in data:

dat <- read.csv("data/cheer.csv")
str(dat)
'data.frame':   5 obs. of  3 variables:
 $ Judge         : int  1 2 3 4 5
 $ Navarro       : num  9.8 9.6 9.7 9.7 9.9
 $ Trinity.Valley: num  9.9 9.9 9.8 9.7 9.5
dat

Tables

This is a table
Col1 Col2
asfdkl 4
x = 8