-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathlist_of_labs.Rmd
344 lines (320 loc) · 9.32 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
---
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}
matrixlab <- list(
title = "Matrix math in R",
topics = c("Matrices & matrix algebra","(review on your own)"),
pdf = "Labs/Week 0 basic matrix/basic-matrix-math.pdf",
rmd = "",
html = "https://nwfsc-timeseries.github.io/atsa-labs/chap-basicmat.html",
video = "",
youtube = "",
data = "",
homework = "Optional (not part of grade): Listed at end of <a href='https://nwfsc-timeseries.github.io/atsa-labs/chap-basicmat.html'>Chapter 1</a> in the ATSA lab book.",
key = "Labs/Week 0 basic matrix/basic-matrix-math-key.pdf",
instructor = "",
hw_topics = "Review of matrix math",
hw_duedate = "Optional"
)
```
```{r}
lmlab <- list(
title = "Writing models in matrix form",
topics = c("Writing models in matrix form (through section 2.5)",
"Basic time series functions",
"Autocorrelation"),
pdf = "",
rmd = "",
html = c("https://nwfsc-timeseries.github.io/atsa-labs/chap-mlr.html","https://nwfsc-timeseries.github.io/atsa-labs/chap-ts.html"),
video = c(""),
youtube = "",
data = "",
homework = "Optional (but important to understand course material): End of <a href='https://nwfsc-timeseries.github.io/atsa-labs/chap-mlr.html'>Chapter 2</a> in the ATSA lab book.",
key = "Labs/Week 1/HW_1_Key.html",
instructor = c("Eli/Mark"),
hw_topics = c("linear regression in matrix form"),
hw_duedate = "Optional"
)
```
```{r}
forecastlab <- list(
title = "Box-Jenkins Methods",
topics = c("Simulating ARMA models", "Fitting ARIMA models", "Forecasting with ARIMA models","Box-Jenkins Methods"),
pdf = "",
rmd = "",
html = c("https://nwfsc-timeseries.github.io/atsa-labs/chap-tslab.html", "https://nwfsc-timeseries.github.io/atsa-labs/chap-boxjenkins-.html"),
video = "",
youtube = "",
data = "",
homework = "Intro to ts: problems at end of <a href='https://nwfsc-timeseries.github.io/atsa-labs/chap-tslab.html'>Chapter 4</a> in the ATSA lab book.<br>Fitting ARMA models: problems at end of <a href='https://nwfsc-timeseries.github.io/atsa-labs/chap-boxjenkins-.html'>Chapter 5</a> in the ATSA lab book.",
key = c("Labs/Week 2/HW_2_ts_Key.html","Labs/Week 2/HW_2_box-jenkins_Key.html"),
instructor = "Mark & Eli",
hw_topics = c("ARIMA models"),
hw_duedate = "Due next Thurs 11:59 PM PST; email to instructor(s) for lab"
)
```
```{r}
sslab1 <- list(
title = "Univariate state-space models",
topics = c("Simulating ARMA models", "Fitting arima models", "Fitting univariate state-space models"),
pdf = "",
rmd = "",
html = "",
youtube = "",
video = "",
data = "",
homework = "Intro to uniSS: problems at end of chapter; Due 11:49 pm next Thurs",
key = "",
instructor = "Eli",
hw_topics = c("Univariate state-space models"),
hw_duedate = "Due next Thurs 11:59 PM PST; email to instructor(s) for lab"
)
```
```{r}
sslab2 <- list(
title = "State-space models",
topics = c("Fitting univariate and mulitvariate state-space models"),
pdf = "",
rmd = "",
html = c("https://nwfsc-timeseries.github.io/atsa-labs/chap-univariate-state-space.html", "https://nwfsc-timeseries.github.io/atsa-labs/chap-mss.html"),
video = "",
youtube = "",
data = "",
homework = "HW #2 questions and data: [Rmd](https://nwfsc-timeseries.github.io/atsa/Labs/Week 3/NO2Lab/HW2-NO2.Rmd), [html](https://nwfsc-timeseries.github.io/atsa/Labs/Week 3/NO2Lab/HW2-NO2.html), [data](https://nwfsc-timeseries.github.io/atsa/Labs/Week 3/NO2Lab/ECNNO2.RData),
[Tips](https://nwfsc-timeseries.github.io/atsa/Labs/Week 3/NO2Lab/HW2-Tips.html)",
key = c("Labs/Week 3/NO2Lab/HW2-NO2-Key.html"),
instructor = "Eli",
hw_topics = c("State-space models"),
hw_duedate = "Due Sat Jan 30 11:59 PM PST; email to Eli"
)
```
```{r}
dfalab <- list(
title = "DFA models",
topics = c("Fitting DFA models"),
pdf = "",
rmd = "",
html = "Labs/Week 4/intro-to-dfa.html",
video = "",
youtube = "",
data = "",
homework = "HW #3 Problems at end of Chap 10 of Lab Book",
key = "Labs/Week 4/HW_4_answer_key.pdf",
instructor = "Mark",
hw_topics = c("Dynamic Factor Analysis"),
hw_duedate = "Due next Thurs 11:59 PM PST; email to Mark"
)
```
```{r}
edmlab <- 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}
dlmlab <- 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 = "HW #4 Problems at end of Chap 9 in lab book",
key = "Labs/Week 5/HW_5_answer_key.pdf",
instructor = "Mark",
hw_topics = c("Dynamic Linear Models"),
hw_duedate = "Due next Thurs 11:59 PM PST; email to instructor(s) for lab"
)
```
```{r}
etsedmlab <- list(
title = "Forecasting with ETS models",
topics = c("Forecasting with ETS models, Model comparison, Covariates in MARSS models"),
pdf = "",
rmd = "",
html = c("https://nwfsc-timeseries.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 PST; email to instructor(s) for lab"
)
```
```{r bayeslab}
bayeslab <- list(
title = "Fitting models with STAN",
topics = c("Bayesian estimation", "STAN"),
pdf = "",
rmd = "https://nwfsc-timeseries.github.io/atsa-labs/Rmds/fitting-models-with-stan.Rmd",
html = "https://nwfsc-timeseries.github.io/atsa-labs/chap-stan.html",
video = "",
youtube = "",
data = "",
homework = "HW # 5. Project Methods",
key = "",
instructor = "Eric",
hw_topics = c(""),
hw_duedate = "Due next Thurs 11:59 PM PST; email to all instructors"
)
```
```{r hmmlab}
hmmlab <- list(
title = "B Estimation Discussion",
topics = c("Interactions", "Stability", "B matrix"),
pdf = "",
rmd = "",
html = "",
video = "",
youtube = "",
data = "",
homework = "HW #6: HMM/Bayesian State space models. [Rmd](https://nwfsc-timeseries.github.io/atsa/Labs/HW6/HW6.Rmd), [html](https://nwfsc-timeseries.github.io/atsa/Labs/HW6/HW6.html), [Rmd Part 2 JAGS](https://nwfsc-timeseries.github.io/atsa/Labs/HW6/HW6-part2-JAGS.Rmd), [Part 2 Online](https://rstudio.cloud/project/2228346)",
key = c("Labs/HW6/HW6-key-part1.html", "Labs/HW6/HW6-key-part2.html"),
instructor = "Eli & Eric",
hw_topics = c(""),
hw_duedate = "Due Monday Mar 1 11:59 PM PST; email to Eric & Eli"
)
```
```{r}
glmlab <- 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 <- 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"
)
```
```{r}
perturblab <- 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 <- 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}
freqdomainlab <- list(
title = "Frequency Domain",
topics = c("Frequency domain methods", "wavelet analysis", "Stochastic volatility"),
pdf = "",
rmd = "",
html = "",
video = "",
youtube = "",
data = "",
homework = "No homework",
key = "",
instructor = "Mark",
hw_topics = c("No homework"),
hw_duedate = "work on projects"
)
```
```{r}
spatiallab <- list(
title = "Spatio-temporal models",
topics = c("Spatio-temporal models"),
pdf = "",
rmd = "Labs/Week 9/lab.Rmd",
html = "",
video = "",
youtube = "",
data = "",
homework = "No homework; Datasets for in class lab [Data1](Labs/Week 9/SNOTEL_metadata.csv), [Data2](Labs/Week 9/SNOTEL_Washington_1981_2013.csv), [Data3](Labs/Week 9/tck_longform.Rdata)",
key = "",
instructor = "Eric",
hw_topics = c(""),
hw_duedate = "work on projects"
)
```
```{r studentpresentation2}
presentlab <- 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 = "work on projects"
)
```