Project Start

Quarto

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

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:

library(tidyverse)
Warning: package 'tidyverse' was built under R version 4.3.2
── Attaching core tidyverse packages ──────────────────────── tidyverse 2.0.0 ──
✔ dplyr     1.1.3     ✔ readr     2.1.4
✔ forcats   1.0.0     ✔ stringr   1.5.0
✔ ggplot2   3.4.3     ✔ tibble    3.2.1
✔ lubridate 1.9.3     ✔ tidyr     1.3.0
✔ purrr     1.0.2     
── 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
library(openintro)
Warning: package 'openintro' was built under R version 4.3.2
Loading required package: airports
Warning: package 'airports' was built under R version 4.3.2
Loading required package: cherryblossom
Warning: package 'cherryblossom' was built under R version 4.3.2
Loading required package: usdata
Warning: package 'usdata' was built under R version 4.3.2
library(infer)
Warning: package 'infer' was built under R version 4.3.3
library(skimr)
Warning: package 'skimr' was built under R version 4.3.3
##load("C:\\Users\\MCuser\\Documents\\Data Science-Math217\\roller_coasters.csv")

You can add options to executable code like this

[1] 4

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