-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathindex.qmd
129 lines (88 loc) · 2.73 KB
/
index.qmd
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
---
title: "ETC3550/5550 Applied forecasting"
---
```{r}
#| label: load_packages
#| include: false
#| message: false
#| warning: false
#| echo: false
#| cache: false
library(tidyverse)
options(knitr.kable.NA = '')
source(here::here("course_info.R"))
week <- as.integer(1 + ((Sys.Date() - as_date(start_semester))/7))
```
## Teaching team
### Lecturer/Chief Examiner
:::: {.columns}
::: {.column width="25%"}
![](https://robjhyndman.com/img/RJH_AAS_small.png){style="width: 80%;"}
:::
::: {.column width="75%"}
[**Rob J Hyndman**](https://robjhyndman.com)
Email: [[email protected]](mailto:[email protected])
:::
::::
### Head Tutor
:::: {.columns}
::: {.column width="25%"}
![](/img/mitch.png){style="width: 80%;"}
:::
::: {.column width="75%"}
[**Mitchell O'Hara-Wild**](https://mitchelloharawild.com)
Email: [[email protected]](mailto:[email protected])
:::
::::
### Tutors
:::: {.columns}
::: {.column .centeredcolumn width = "33%"}
![](/img/maliny.png){style="width: 65%;"}
Maliny Poh
:::
::: {.column .centeredcolumn width = "33%"}
![](/img/nuwani.png){style="width: 65%;"}
Nuwani Palihawadana
:::
::: {.column .centeredcolumn width = "33%"}
![](/img/sapphire.png){style="width: 65%;"}
Xiefei (Sapphire) Li
:::
::::
## Weekly schedule
* [Pre-recorded videos](https://www.youtube.com/watch?v=uwKiT1o1TkI&list=PLyCNZ_xXGzpm7W9jLqbIyBAiSO5jDwJeE): approximately 1 hour per week [[Slides](https://github.com/robjhyndman/fpp3_slides)]
* Tutorials: 1 hour per week
* Online lecture: 12noon Mondays
* Workshop: 1pm Tuesdays, [Lecture Theatre S3, 16 Rainforest Walk](https://maps.app.goo.gl/4AmDLWkY1yYZviFz8).
```{r}
#| label: schedule2
#| message: false
#| warning: false
#| echo: false
#| output: asis
schedule |>
transmute(
Show = !is.na(Week), #& (Week <= week | Week <= 1),
Topic = if_else(!Show, Topic, glue::glue("[{Topic}](./week{Week}/index.html)")),
Chapter = if_else(is.na(Week), Chapter, glue::glue("[{Chapter}]({Chapter_URL})")),
Assignments = if_else(is.na(Assignment), Assignment, glue::glue("[{Assignment}]({File})")),
Quizzes = if_else(is.na(Quiz), Quiz, glue::glue("[{Quiz}]({QMoodle})")),
Week = format(Date, "%d %b")
) |>
select(-Show) |>
select(Week, everything()) |>
knitr::kable(format = "markdown")
```
## Assessments
* [Forecasting competition](assignments/competition.qmd): 2%
* Weekly quizzes: 8%
* [Assignment 1](assignments/A1.qmd): 6%
* [Assignment 2](assignments/A2.qmd): 6%
* [Assignment 3](assignments/A3.qmd): 6%
* [Retail project](assignments/Project.qmd): 12%
* Final exam: 60%
## R package installation
Here is the code to install the R packages we will be using in this unit.
```r
install.packages(c("tidyverse","fpp3", "GGally"), dependencies = TRUE)
```