-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.qmd
88 lines (64 loc) · 1.9 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
---
title: ANU Programs
date-modified: today
format:
html: default
execute:
echo: false
warning: false
---
```{r setup}
library(tidyverse)
library(visNetwork)
library(rvest)
targets::tar_source()
targets::tar_load_everything()
```
```{css}
.cell-output-display {
border: 1px solid black;
}
```
The code for this document is avalable at <https://github.com/anuopensci/anu-programs>.
::: callout-note
## How to read the interactive network graph
- The **node** represents a course as indicated by the 4 letter alpha code followed by 4 digits
- The **edges** show the prerequisite required for the course.
- The **color** of nodes are such that:
- blue are courses listed in the study options
- yellow are required but not listed in the study options
- red are courses that don't seem to exist anymore
- You can **zoom** in to see more information.
- **Clicking** on the node takes you to the ANU course homepage.
- **Hovering** over the node displays the course name.
:::
## [Master of Statistics](https://programsandcourses.anu.edu.au/2024/program/MSTAT)
```{r}
program_study_table("MSTAT")
```
```{r}
plot_network(mstat_courses, mstat_required)
```
## [Master of Statistical Data Analysis](https://programsandcourses.anu.edu.au/2024/program/MSDA)
```{r}
plot_network(msda_courses, msda_required)
```
## [Master of Applied Data Analytics](https://programsandcourses.anu.edu.au/program/madan)
```{r}
program_study_table("MADAN")
```
```{r}
plot_network(madan_courses, madan_required)
```
## [Bachelor of Applied Data Analytics](https://programsandcourses.anu.edu.au/program/BADAN)
```{r}
program_study_table("BADAN")
```
## [Bachelor of Finance, Economics and Statistics (Honours)](https://programsandcourses.anu.edu.au/program/AFEST)
```{r}
program_study_table("AFEST")
```
## [Bachelor of Statistics](https://programsandcourses.anu.edu.au/program/BSTAT)
```{r}
program_study_table("BSTAT")
```