-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.qmd
82 lines (64 loc) · 3.61 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
---
title: "ETC5521: Diving Deeply into Data Exploration"
---
```{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))
```
## Lecturer/Chief Examiner
* **Professor Di Cook**
- Email: [etc5521.clayton-x@monash.edu](mailto:etc5521.clayton-x@monash.edu)
- Consultation: Thu 11:00-12:00, 352 Education Blg, and zoom
## Tutors
* Krisanat Anukarnsakulchularp
- Tutorials: Wed 9:30-11:00am and 7:30-9:00pm CL_Anc-19.LTB_134
- Consultation: Mon 9.30-11:00 am, Menzies W9.20
## Weekly schedule
* Lecture: Tues 10-12 on zoom (link in [Moodle](https://learning.monash.edu/course/view.php?id=18864§ion=6))
* Tutorial: 1.5 hours
* Weekly learning quizzes due each Wednesday 9am, from week 2
```{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)")),
Reference = if_else(is.na(Week), Reference, glue::glue("[{Reference}]({Reference_URL})")),
Assessments = if_else(is.na(Assignment), Assignment, glue::glue("[{Assignment}]({Link})")),
Week = format(Date, "%d %b")
) |>
select(-Show) |>
select(Week, everything()) |>
knitr::kable(format = "markdown")
```
## Assessments
* [Weekly learning quizzes](https://learning.monash.edu/course/view.php?id=18864§ion=8): 5%
* Assignment 1: [Instructions](https://learning.monash.edu/mod/assign/view.php?id=2966868) (15%)
* Assignment 2: [Instructions](https://learning.monash.edu/mod/assign/view.php?id=2587917) (20%)
* Assignment 3: [Instructions](https://learning.monash.edu/mod/assign/view.php?id=2587917) (20%)
* Assignment 4 part 1: [Instructions](https://learning.monash.edu/mod/assign/view.php?id=2587918) (20%)
* Assignment 4 part 2: [Instructions](https://learning.monash.edu/mod/assign/view.php?id=2587919) (20%)
## Software
We will be using the latest versions of [R](https://cran.rstudio.com) and [RStudio](https://posit.co/download/rstudio-desktop/).
Here is the code to install (most of) the R packages we will be using in this unit.
```r
install.packages(c("tidyr", "dplyr", "readr", "readxl", "readabs", "forcats", "tsibble", "cubble", "lubridate", "ggplot2", "GGally", "ggthemes", "sugrrants", "ggbeeswarm", "plotly", "gganimate", "tourr", "sugarbag", "tsibbletalk", "visdat", "inspectdf", "naniar", "validate", "vcd", "mvtnorm", "nullabor", "visage", "forecast", "cassowaryr", "brolgar", "palmerpenguins", "housingData", "broom", "kableExtra", "lvplot", "colorspace", "patchwork"), dependencies=TRUE)
```
From GitHub, install
```
remotes::install_github("casperhart/detourr")
```
If you are relatively new to R, working through the materials at [https://learnr.numbat.space](https://learnr.numbat.space) is an excellent way to up-skill. You are epsecially encouraged to work through Chapter 3, on Troubleshooting and asking for help, because at some point you will need help with your coding, and how you go about this matters and impacts the ability of others to help you.
<a rel="license" href="http://creativecommons.org/licenses/by-nc-sa/4.0/"><img alt="Creative Commons License" style="border-width:0" src="https://i.creativecommons.org/l/by-nc-sa/4.0/88x31.png" /></a><br />These materials are licensed under a <a rel="license" href="http://creativecommons.org/licenses/by-nc-sa/4.0/">Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License</a>.