-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathindex.qmd
107 lines (76 loc) · 2.42 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
---
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%; border-radius: 50%;"}
:::
::: {.column width="75%"}
[**Rob J Hyndman**](https://robjhyndman.com)
Email: [Rob.Hyndman@monash.edu](mailto:Rob.Hyndman@monash.edu)
:::
::::
### Head Tutor
:::: {.columns}
::: {.column width="25%"}
![](https://avatars.githubusercontent.com/u/16127127?v=4){style="width: 80%;border-radius: 50%;"}
:::
::: {.column width="75%"}
[**Mitchell O'Hara-Wild**](https://mitchelloharawild.com)
Email: [Mitch.OHara-Wild@monash.edu](mailto:Mitch.OHara-Wild@monash.edu)
:::
::::
### Tutors
* Elena Sanina
* Zhixiang (Elvis) Yang
* Jarryd Chapman
* Xiefei (Sapphire) Li
* Xiaoqian Wang
## 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.5 hours in class per week
* Seminars: 9am Fridays, [Central 1 Lecture Theatre, 25 Exhibition Walk](https://maps.app.goo.gl/RKdmJq2tBfw8ViNT9).
```{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})")),
Assessments = if_else(is.na(Assignment), Assignment, glue::glue("[{Assignment}]({File})")),
Week = format(Date, "%d %b")
) |>
select(-Show) |>
select(Week, everything()) |>
knitr::kable(format = "markdown")
```
## Assessments
* [Assignment 1](assignments/A1.qmd): 2%
* [Assignment 2](assignments/A2.qmd): 6%
* [Assignment 3](assignments/A3.qmd): 6%
* [Assignment 4](assignments/A4.qmd): 6%
* [Retail project](assignments/Project.qmd): 20%
* 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)
```