-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy path_list_of_labs.Rmd
363 lines (337 loc) · 8.74 KB
/
_list_of_labs.Rmd
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
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
---
title: "List of Labs"
output: html_document
---
```{r include=FALSE}
knitr::opts_chunk$set(echo = FALSE)
```
```{r}
# you can vector c() of things; pdf, rmd, video, data, key should be links
```
```{r}
emptylist <- list(
title = "", topics ="", pdf = "", rmd = "",
html = "", video = "", youtube = "",
data = "", repo = "",
homework = "", key = "",
instructor = "", hw_topics = "",
hw_duedate = "")
fill.list <- function(...){
inputlist <- list(...)
x <- emptylist
for(i in names(inputlist)){x[[i]] <- inputlist[[i]]}
return(x)
}
```
```{r}
matrixlab <- fill.list(
title = "Matrix math in R",
topics = c("Matrices & matrix algebra","(review on your own)"),
pdf = "",
html = "https://atsa-es.github.io/atsa-labs/chap-basicmat.html",
homework = "Optional: online tutorial <a href='https://atsa.shinyapps.io/matrix/'>Matrix tutorial</a>",
key = "",
hw_topics = "matrix math",
hw_duedate = "Optional")
```
```{r}
lmlab <- fill.list(
title = "Writing models in matrix form",
topics = c("Writing models in matrix form (through section 2.5)"),
html = c("https://atsa-es.github.io/atsa-labs/chap-mlr.html"),
homework = "Optional (important to understand course material): Questions at end of <a href='https://atsa-es.github.io/atsa-labs/chap-mlr.html'>Chapter 2</a>. <a href='Labs/Week 1/HW_1_Key.html'>Key</a>",
key = "Labs/Week 1/HW_1_Key.html",
hw_topics = c("matrix models"),
hw_duedate = "Optional"
)
```
```{r}
arimalab <- fill.list(
title = "Box-Jenkins Methods",
topics = c("Fitting ARIMA models", "Forecasting with ARIMA models"),
html = c("Labs/Week 2/Lab1-ARIMA-2023.html"),
data = "See repo",
repo = "https://github.com/atsa-es/fish550-2023/tree/main/Lab-1",
homework = "Lab write-up #1",
key = "",
instructor = "Eli",
hw_topics = c("ARIMA models"),
hw_duedate = "Due Tues Apr 18 11:59 PM PDT; Post to GitHub."
)
```
```{r}
sslab2 <- fill.list(
title = "Multivariate State-space models",
topics = c("Fitting mulitvariate state-space models"),
pdf = "",
rmd = "",
html = c("https://atsa-es.github.io/atsa/Labs/Week%203/CR lab/Lab2-MARSS.html"),
video = "",
youtube = "",
data = "See repo",
repo = "https://github.com/atsa-es/fish550-2023/tree/main/Lab-1",
homework = "Lab write-up #2",
#homework = "HW #2 questions and data: [Rmd](https://atsa-es.github.io/atsa/Labs/Week 3/NO2Lab/HW2-NO2.Rmd), [html](https://atsa-es.github.io/atsa/Labs/Week 3/NO2Lab/HW2-NO2.html), [data](https://atsa-es.github.io/atsa/Labs/Week 3/NO2Lab/ECNNO2.RData), [Tips](https://atsa-es.github.io/atsa/Labs/Week 3/NO2Lab/HW2-Tips.html)",
key = "",
instructor = "Eli",
hw_topics = c("State-space models"),
hw_duedate = "Due Tues April 25 11:59 PM PDT; Post to GitHub"
)
```
```{r}
dfalab <- fill.list(
title = "DFA models",
topics = c("Fitting DFA models"),
pdf = "",
rmd = "",
html = "Labs/Week 4/intro-to-dfa.html",
video = "",
youtube = "",
data = "",
homework = "Lab write-up #3",
key = "",
instructor = "Mark",
hw_topics = c("Dynamic Factor Analysis"),
hw_duedate = "Due Tues May 2 11:59 PM PDT; Post to GitHub"
)
```
```{r hmmlab}
hmmlab <- fill.list(
title = "Hidden Markov Models",
topics = c("HMMs"),
pdf = "",
rmd = "",
html = "https://atsa-es.github.io/atsa/Labs/Week%205/Lab4_hmm.html",
video = "",
youtube = "",
data = "[stoplight](https://atsa-es.github.io/atsa/Labs/Week%205/stoplight.csv)",
homework = "Lab write-up #4: Hidden Markov Models. [Rmd](https://atsa-es.github.io/atsa/Labs/Week%205/Lab4_hmm.Rmd), [html](https://atsa-es.github.io/atsa/Labs/Week%205/Lab4_hmm.html)",
key = "",
instructor = "Eric",
hw_topics = c(""),
hw_duedate = "Due Tues May 9 11:59 PM PDT; Post to GitHub"
)
```
```{r}
dlmlab <- fill.list(
title = "Dynamic Linear Models",
topics = c("Fitting DLMs"),
pdf = "",
rmd = "Labs/Week 5/intro-to-dlms.Rmd",
html = "Labs/Week 5/intro-to-dlms.html",
video = "https://youtu.be/KpBgTqcsqNg",
youtube = "",
data = "",
homework = "",
key = "",
instructor = "Mark",
hw_topics = c("Dynamic Linear Models"),
hw_duedate = "Due May 23 Tues 11:59 PM PDT; Post to GitHub"
)
```
```{r bayeslab}
bayeslab <- fill.list(
title = "Fitting models non-Gaussian errors",
topics = c("Fitting Bayesian state-space models",
"Fitting zero-inflated models"),
pdf = "",
rmd = "https://atsa-es.github.io/atsa-labs/Rmds/fitting-models-with-stan.Rmd",
html = "https://atsa-es.github.io/atsa-labs/chap-stan.html",
video = "",
youtube = "",
data = "",
homework = "Lab write-up # 5. Project Methods",
key = "",
instructor = "Eric",
hw_topics = c(""),
hw_duedate = "Due Fri May 12 11:59pm PDT; Post to GitHub"
)
```
```{r}
freqdomainlab <- fill.list(
title = "Frequency Domain",
topics = c("Frequency domain methods", "wavelet analysis", "Stochastic volatility"),
pdf = "",
rmd = "",
html = "",
video = "",
youtube = "",
data = "",
homework = "Lab write-up #6",
key = "",
instructor = "Mark",
hw_topics = c(""),
hw_duedate = "Due Tues May 23 11:59pm PDT; Post to GitHub"
)
```
```{r}
spatiallab <- fill.list(
title = "Spatio-temporal models",
topics = c("Spatio-temporal models"),
pdf = "",
rmd = "Labs/Week 9/lab.Rmd",
html = "",
video = "",
youtube = "",
data = c("[Data1](Labs/Week 9/SNOTEL_metadata.csv)", "[Data2](Labs/Week 9/SNOTEL_Washington_1981_2013.csv)", "[Data3](Labs/Week 9/tck_longform.Rdata)"),
homework = "No homework",
key = "",
instructor = "Eric",
hw_topics = c(""),
hw_duedate = "work on projects"
)
```
```{r help}
helplab <- fill.list(
title = "TMB/C++ in R",
topics = c("TMB", "C++"),
pdf = "",
rmd = "https://github.com/atsa-es/fish550-2023/tree/main/Lab-6",
html = "",
video = "",
youtube = "",
data = "",
homework = "No homework",
key = "",
instructor = "Eli",
hw_topics = c("No homework"),
hw_duedate = ""
)
```
```{r studentpresentation2}
presentlab <- fill.list(
title = "Student presentations",
topics = c("Student presentations"),
pdf = "",
rmd = "",
html = "",
video = "",
youtube = "",
data = "",
homework = "No homework",
key = "",
instructor = "",
hw_topics = c("No homework"),
hw_duedate = ""
)
```
```{r}
edmlab <- fill.list(
title = "EDM models",
topics = c("Fitting EDM models"),
pdf = "",
rmd = "Labs/EDM Lab/EDM-Lab.Rmd",
html = "Labs/EDM Lab/EDM-Lab.html",
video = "",
youtube = "",
data = "",
homework = "No Homework",
key = "Labs/EDM Lab/EDM-Key.html",
instructor = "Eli",
hw_topics = c(""),
hw_duedate = ""
)
```
```{r}
etsedmlab <- fill.list(
title = "Forecasting with ETS models",
topics = c("Forecasting with ETS models, Model comparison, Covariates in MARSS models"),
pdf = "",
rmd = "",
html = c("https://atsa-es.github.io/atsa-labs/chap-msscov.html", "https://fish-forecast.github.io/Fish-Forecast-Webpage/Exp_Smoothing.html"),
video = "",
youtube = "",
data = "",
homework = "TBD",
key = "",
instructor = c("Eli"),
hw_topics = c("Covariates in MARSS models"),
hw_duedate = "Due next Thurs 11:59 PM PDT; email to instructor(s) for lab"
)
```
```{r}
perturblab <- fill.list(
title = "Perturbation detection",
topics = c("Perturbation detection"),
pdf = "",
rmd = "",
html = "",
video = "",
youtube = "",
data = "",
homework = "No homework",
key = "",
instructor = "Eric",
hw_topics = c("No homework"),
hw_duedate = "work on projects"
)
```
```{r}
hierlab <- fill.list(
title = "Hierarchical models",
topics = c("Fitting hierarchical models"),
pdf = "",
rmd = "",
html = "",
video = "",
youtube = "",
data = "",
homework = "No homework",
key = "",
instructor = "Eric",
hw_topics = c("No homework"),
hw_duedate = "work on projects"
)
```
```{r}
sslab1 <- fill.list(
title = "Univariate state-space models",
topics = c("Fitting univariate state-space models", "Animal movement", "TMB", "Bayesian"),
pdf = "",
rmd = "",
html = "",
youtube = "",
video = "",
data = "",
homework = "HW #2",
key = "",
instructor = "Eli",
hw_topics = c("Univariate state-space models"),
hw_duedate = "Due Apr 25 Tues 11:59 PM PDT; post to GitHub"
)
```
```{r}
glmlab <- fill.list(
title = "Generalized models",
topics = c("Fitting models with non-Gaussian errors",
"Fitting zero-inflated models"),
pdf = "",
rmd = "",
html = "",
video = "",
youtube = "",
data = "",
homework = "No homework",
key = "",
instructor = "Eric",
hw_topics = c("No homework"),
hw_duedate = "work on projects"
)
```
```{r}
intlab <- fill.list(
title = "Species interactions",
topics = c("Fitting MARSS models for species interactions"),
pdf = "",
rmd = "",
html = "",
video = "",
youtube = "",
data = "",
homework = "No homework",
key = "",
instructor = "Eli",
hw_topics = c("No homework"),
hw_duedate = "work on projects"
)
```