#Headings You can make levels of headings
Two astericks for BOLD
One astercks for italic
You can make bullet points with dashes
Get qoutes using a >
“Theres is no such thing as a silly question - Stacey”
Insert Links with a combination of round and square brackets. Put the text in square brackets and the url in round brackets.
You can find resource from our RMarkdownThrowdown events at Jen’s Github
easy to embed all kinds of things in Rmarkdown documents
use  use
backticks aa to tell R not to use the words
Blazers Win! 🔥
— UAB Volleyball (@UAB_VB) November 5, 2022
Blazers Win! 🔥
Blazers Win! 🔥
We close out our final curtain call in the 🏠 with a 𝑫𝑼𝑩 over the Roadrunners!#WinAsOne pic.twitter.com/yujYKQ6gdq
We can intersperse notes and code “chunks” Use green pulldown
or use option-command-I
Run the code using the green arrow or command-enter
library(tidyverse)
library(readr)
click on wheel to tell it not to show all the error and extra info
beaches <- read_csv("data/sydneybeaches.csv")
Let’s draw something
beaches %>%
group_by(Site) %>%
summarise(meanbugs = mean(`Enterococci (cfu/100ml)`, na.rm = TRUE)) %>%
ggplot(aes(x = Site, y = meanbugs)) +
geom_col() +
coord_flip()
Finish analysis Want to share with someone now Use the default html, or pdf or word to export
YAML-Yet Another Markdown Language
Dropdown on Knit button for each one
pdf- install.package(“tinytex”) then library(tinytex) it didn’t work for R lady either so figure this out later