-
Notifications
You must be signed in to change notification settings - Fork 3
/
index.Rmd
46 lines (39 loc) · 1.51 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
---
title: "Biomedical Data Science - introduction with case studies"
author: "BIOF1001 teaching team"
date: "`r Sys.Date()`"
site: bookdown::bookdown_site
output: bookdown::gitbook
documentclass: book
bibliography: [book.bib, packages.bib]
biblio-style: apalike
link-citations: yes
github-repo: rstudio/bookdown-demo
description: "This is a minimal example of using the bookdown package to write a book. The output format for this example is bookdown::gitbook."
---
```{r set-options, include=FALSE, purl=FALSE}
# knitr pkg is needed throughout book
if (!"knitr" %in% installed.packages()) {
install.packages("knitr", repos = "http://cran.rstudio.com")
}
library(knitr)
# Set output options
if (is_html_output()) {
options(width = 80)
}
if (is_latex_output()) {
options(width = 75)
}
options(digits = 7, bookdown.clean_book = TRUE, knitr.kable.NA = "NA")
```
# Welcome {-}
Welcome to the book [Biomedical Data Science - an introduction with case studies]().
Most contents are demonstrated with R programming language.
This book is designed as a collection of R Markdown notebooks, as supplementary
to the lecture notes for the course
[BIOF1001: Introduction to Biomedical Data Science](),
an undergraduate course (Year 1) at the University of Hong Kong.
**Note:** Most contents may be only updated before or right after the lectures,
so please refer to the updated version.
**GitHub Repository:** you can find the source files on
[StatBiomed/BMDS-book](https://github.com/StatBiomed/BMDS-book) and the way to re-build this book.