Lars Schöbitz
Global Health Engineering - ETH Zurich
2022-06-02
Learners can use R Markdown Quarto and GitHub to publish their group project a report.
Learners can use exported references from Zotero in Better BibTex Format to generate an automated reference list. Assignment 3 - YouTube Video - 13:58
Learners can cross-reference figures and tables within an R Markdown file.
.
├── README.md
├── data
│ └── what_a_waste
├── exam-fs22.Rproj
├── section-01.qmd
├── section-02.qmd
├── section-03.qmd
└── section-04.qmd
ae-15-data-communication
ae-15a-communicate.qmd
25:00
ggplot(data = waste_data_long_mean,
mapping = aes(x = mean_percent,
y = waste_category,
fill = income_cat)) + # 1
geom_col(position = position_dodge()) + # 1
labs(title = "Waste Composition", # 0.5
subtitle = "Mean percentages ...", # 0.5
x = "mean (percent)", # 0.5
y = "waste category", # 0.5
fill = "Income category", # 0.5
caption = "Data from: ...") + # 0.5
scale_x_continuous(breaks = seq(0, 50, 5)) + # 1
scale_fill_brewer(type = "qual", palette = 3) + # 1
theme_minimal() + # 0.5
theme(panel.grid.minor = element_blank(), # 0.5
panel.grid.major.y = element_blank()) # 0.5
What a Waste
rbtl-fs22-exam-data
You’re not limited to RStudio for editing Quarto documents…
Technical articles, reports, presentations, websites, blogs, and books in HTML, PDF, MS Word, ePub, and more.
Author with scientific markdown, including equations, citations, crossrefs, figure panels, callouts, advanced layout, and more.
15:00
ae-15-data-communication
ae-15a-communicate.qmd
10:00
Slides created via revealjs and Quarto: https://quarto.org/docs/presentations/revealjs/ Access slides as PDF on GitHub
All material is licensed under Creative Commons Attribution Share Alike 4.0 International.