-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy path_quarto.yml
126 lines (115 loc) · 3.7 KB
/
_quarto.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
project:
type: website
website:
title: "Introduction to R"
page-navigation: true
open-graph: true
repo-url: https://github.com/lmu-osc/introduction-to-R
repo-actions: [edit, issue]
favicon: assets/LMU-OSC_favicon.jpg
margin-header: |
{width="175"}
navbar:
search: true
right:
- about.qmd
left:
- href: index.qmd
text: Home
- qmd/setup/setup.qmd
- qmd/getting_started/the_big_picture.qmd
- qmd/final_exercise/final_exercise.qmd
sidebar:
style: "docked"
search: true
contents:
- section: "0) Before the workshop"
contents:
- qmd/setup/setup.qmd
- section: "1) Getting Started"
contents:
- section: "Workflow"
contents:
- qmd/workflow/workflow.qmd
- qmd/workflow/workflow_exercise.qmd
- section: "Overview"
contents:
- qmd/getting_started/the_big_picture.qmd
- qmd/getting_started/data_sets.qmd
- section: "2) Basics"
contents:
- section: "Basics"
contents:
- qmd/basics/basics.qmd
- qmd/basics/tidyverse.qmd
- qmd/basics/basics_exercise.qmd
- section: "Data structures"
contents:
- qmd/data_structures/data_structures.qmd
- qmd/data_structures/data_structures_exercise.qmd
- section: "Packages"
contents:
- qmd/packages/packages.qmd
- qmd/packages/packages_exercise.qmd
- section: "Loading data"
contents:
- qmd/load_data/load_data.qmd
- qmd/load_data/load_data_exercise.qmd
- section: "3) Data manipulation and transformation"
contents:
- section: "Getting an overview"
contents:
- qmd/peeking/peeking.qmd
- qmd/peeking/peeking_exercise.qmd
- section: "Subsetting"
contents:
- qmd/subsetting/subsetting.qmd
- qmd/subsetting/subsetting_exercise.qmd
- section: "Missings"
contents:
- qmd/missing/missing.qmd
- qmd/missing/missing_exercise.qmd
- section: "Reshaping"
contents:
- qmd/format/format.qmd
- qmd/format/format_exercise.qmd
- section: "Merging"
contents:
- qmd/merging/merging.qmd
- qmd/merging/merging_exercise.qmd
- section: "Functions"
contents:
- qmd/functions/functions.qmd
- qmd/functions/functions_exercise.qmd
- section: "Loops and Conditions"
contents:
- qmd/loops/loops.qmd
- qmd/loops/loops_exercise.qmd
- section: "4) Visualization"
contents:
- qmd/plotting/plotting.qmd
- qmd/plotting/plotting_exercise.qmd
- section: "5) Final Exercise"
contents:
- qmd/final_exercise/final_exercise.qmd
- section: "6) Additional Resources"
contents:
- qmd/resources/resources.qmd
- section: "Direkt Links to Cheat Sheets"
contents:
- href: https://iqss.github.io/dss-workshops/R/Rintro/base-r-cheat-sheet.pdf
text: "Base R"
- href: https://www.rstudio.com/wp-content/uploads/2015/02/data-wrangling-cheatsheet.pdf
text: "Data Wrangling with tidyverse"
- href: https://rstudio.github.io/cheatsheets/data-visualization.pdf
text: "Data visualization with ggplot2"
format:
html:
theme:
- cosmo
- custom.scss
css: styles.css
toc: true
editor: visual
execute:
freeze: auto