forked from mcolvin/WFA4313-Fisheries-Management
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathschedule.Rmd
30 lines (26 loc) · 804 Bytes
/
schedule.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
---
title: "Provisional Lecture and Lab Schedule"
output:
html_document:
includes:
after_body: _includes/include_footer-no-disqus.html
in_header: _includes/header_banner.html
---
<!--
library(knitr)
rmarkdown::render_site("schedule.Rmd")# build website
rmarkdown::render_site()# build website
-->
Laboratory time subject to change with instructor availability;
laboratory sessions may be used to make up for missed lectures due to
weather and instructor availability.
```{r,echo=FALSE,message=FALSE,warning=FALSE}
dat<-xlsx::read.xlsx("course-schedule.xlsx" ,
sheetName="2018-F",
stringsAsFactors=FALSE)
dat<-dat[,c(1:4)]
dat[is.na(dat)]<-""
knitr::kable(dat,
col.names=c("Week","Monday (Class: 8-8:50)","Tuesday (Lab: 1-4:50)",
"Wednesday (Class: 8-8:50)"))
```