forked from STAT540-UBC/STAT540-UBC-archive
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.Rmd
88 lines (60 loc) · 2.57 KB
/
index.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
---
output:
html_document:
includes:
before_body: include/nav.html
after_body: include/nothing.html
---
# Statistical Methods for High Dimensional Biology
<span style="color: red">**Next deadline: Seminar 1 due - Jan 11rd, 2019**</span>
Please complete <span style="color: blue">[this survey](https://docs.google.com/forms/d/e/1FAIpQLSd8WlRLiBRaNrNk5PEY87nLkEPjZ60BcdTMUU0JAQRyMkkNsg/viewform?usp=sf_link)</span> as soon as you see this post so we can set up a repo for you! :)
### UBC STAT 540
STAT 540 is a 3 credit course with a mandatory computing seminar.
Cross-listed as STAT 540, BIOF 540, GSAT 540
### Time and Location
02 January 2019 - 03 April 2019
#### Lecture (Sec 201)
**Time**: Mon Wed 9:30 - 11am
**Location**: ESB 2012
#### Seminar / computing lab (S2A) -- REGISTRATION IS REQUIRED!
**Time**: every Wednesday 11am - 1pm. The TAs will remain in the lab until 1pm for general office hours.
**Location**: Hugh Dempster Pavillion 201
### Learning objectives:
* Explore and visualize genomics data
* Apply tailored statitical methods for high dimensional biology data
* Make your work reproducible, reusable, and shareable
* Work with real data in a collaborative model
### Selected topics
* Exploration, visualization, and quality assessment of high dimensional genomics data
* Large scale statistical inference
* Analysis of microarray, RNASeq, and epigenetics data
* Principal component analysis (PCA)
* Cluster analysis
* Cross validation
* Model selection for classification and linear regression models
* Gene function and gene set analysis
* Resampling and the bootstrap
### More info?
Use the navigation bar above!
The course organization on GitHub: <https://github.com/STAT540-UBC>
Repo that creates this website: <https://github.com/STAT540-UBC/STAT540-UBC.github.io>
Repo that supports the Discussion forum: <https://github.com/STAT540-UBC/Discussion>
### Major deadlines
```{r, echo=FALSE}
suppressPackageStartupMessages(library(tidyverse))
assn <- read.csv("course-admin/assn_2019.csv")
assn <- assn %>%
select(content,start, Category) %>%
rename(Assignment = content, `Due Date` = start) %>%
mutate(`Due Date` = as.Date(`Due Date`, "%Y-%m-%d")) %>%
arrange(`Due Date`) %>%
mutate(`Due Date` = format(`Due Date`, "%a %d %B %Y"))
knitr::kable(assn)
```
### Assignment Timeline
```{r,echo=FALSE}
suppressPackageStartupMessages(library(timevis))
assignment_data <- read.csv("course-admin/assn_2019.csv",as.is = T,sep = ",")
assignment_data$start <- paste0(assignment_data$start, " 23:59:00")
timevis(assignment_data)
```