RStudio and Basic Quarto
August 24, 2026
setwd---
title: "My Documnet"
author: "Your Name"
date: today
date-format: long
format: html
execute:
echo: false
message: false
---
#, ##, ###, etc.)
# is the largest heading (level 1)## is the next largest (level 2)### is the next largest (level 3)*)
**)-)1.)[text](url)))#| (hash-pipe) to add optionslabel is a unique identifier for the chunkecho controls whether the code is showneval controls whether the code is runmessage controls whether messages are shownwarning controls whether warnings are shown{r, echo = FALSE} ...read_csv() is a functionggplot() is a functionreadr is a package that contains the read_csv() functionggplot2 is a package that contains the ggplot() functioninstall.packages() to install packageslibrary() to load packagesggplot2 for data visualizationreadr for reading datadplyr for data manipulationtidyr for data tidyinglibrary(ggplot2)library(tidyverse)