-
Notifications
You must be signed in to change notification settings - Fork 1
/
_quarto.yml
162 lines (147 loc) · 5.11 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
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
project:
type: website
output-dir: _site
render:
- "*.qmd"
- "!internal/"
website:
page-navigation: true
title: "R for Scientists"
description: "Homepage for Introduction to R for Scientists, Spring 2023."
site-url: "https://idahoagstats.github.io/r-for-ag-scientists/"
favicon: "images/logo_transparent.png"
image: "images/R_intro_logo.png"
twitter-card: true
google-analytics: "G-ZZST40VXE1"
repo-url: https://github.com/IdahoAgStats/r-for-ag-scientists
repo-actions: [issue]
open-graph: true
#navbar:
# left:
# - href: index.qmd
# text: Home
# - href: schedule.qmd
# text: Schedule
sidebar:
background: "#D9E3E4"
logo: "images/R_intro_logo.png"
logo-href: index.qmd
pinned: false
align: center
tools:
# uses bootstrap5 icons: https://icons.getbootstrap.com/
- icon: code-square
text: Posit Cloud
href: https://posit.cloud/
- icon: github
href: https://github.com/IdahoAgStats/r-for-ag-scientists
text: "GitHub Repository"
style: "docked"
search: true
collapse-level: 2
contents:
- section: "Course Info"
contents:
- href: index.qmd
text: Overview
- href: schedule.qmd
text: Schedule
- href: CoC.qmd
text: Code of Conduct
- href: r-installation-instructions.qmd
text: how to install R
- href: learning-quarto.qmd
text: Quarto basics
- section: "Lessons"
contents:
- href: lessons/lesson-zero.qmd
text: Lesson Zero
- href: lessons/rstudio-tour.qmd
text: Quick tour of R studio
- href: lessons/getting-to-know-data.qmd
text: Getting to know data in R
contents:
- href: lessons/data-types.qmd
text: Data Types
# contents:
# - href: practice/practice-B.qmd
# text: "practice set B"
- href: lessons/data-structures.qmd
text: Data Structures
# contents:
# - href: practice/practice-C.qmd
# text: "practice set C"
# - href: practice/solution-C.qmd
# text: "solutions to C"
- href: lessons/math-operators.qmd
text: Math Operators
# contents:
# - href: practice/practice-A.qmd
# text: "practice set A"
- href: lessons/r-documentation.qmd
text: R documentation
- href: lessons/data-import.qmd
text: Importing tabular files
# contents:
# - href: practice/practice-D.qmd
# text: "practice set D"
- href: lessons/data-wrangling.qmd
text: Data transformation and wrangling
# contents:
# - href: practice/practice-F.qmd
# text: "practice set F"
# - href: practice/solution-F.qmd
# text: "solution to F"
- href: lessons/data-export.qmd
text: Exporting R objects to file
# contents:
# - href: practice/practice-E.qmd
# text: "practice set E"
- href: lessons/r-style-conventions.qmd
text: R style conventions
- href: lessons/reshaping.qmd
text: Reshaping data
# contents:
# - href: practice/practice-H.qmd
# text: "practice set H"
# - href: practice/solution-H.qmd
# text: "solution to H"
- href: lessons/data-merging.qmd
text: Combining data sets
# contents:
# - href: practice/practice-I.qmd
# - text: "practice set I"
# - href: practice/solution-I.qmd
# - text: "solution to I"
- href: lessons/data-aggregation.qmd
text: Data aggregation
# contents:
# - href: practice/practice-G.qmd
# text: "practice set G"
# - href: practice/solution-G.qmd
# text: "solution to G"
- href: lessons/ggplotting.qmd
text: Visualizing data with ggplot
- href: lessons/repeating-actions.qmd
text: How to repeat operations
- href: lessons/reproducible-research.qmd
text: Reproducible research in R
- href: lessons/final_lesson.qmd
text: Keeping up with R
page-footer:
right: "[Quarto Website](https://quarto.org/), template by [Mine Çetinkaya-Rundel](https://github.com/sta210-s22/website)"
left: "© 2024"
center: |
[![](https://github.com/IdahoAgStats/r-for-ag-scientists/raw/main/images/UI_Main_horizontal_4c.png){fig-alt="Uidaho Logo" width=200px}](https://www.uidaho.edu)
background: "#D9E3E4"
format:
html:
theme:
light: [lux, theme.scss]
dark: [lux, theme-dark.scss]
mainfont: "Atkinson Hyperlegible"
code-copy: true
code-overflow: wrap
css: styles.css
toc: true
editor: source