-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathPresentation.Rmd
More file actions
67 lines (49 loc) · 1.12 KB
/
Presentation.Rmd
File metadata and controls
67 lines (49 loc) · 1.12 KB
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
---
title: "My Reproducible Slides"
author: Nicolas Ballarini
institute: |
| Section for Medical Statistics, CeMSIIS
| Medical University of Vienna
date: "October, 2017"
output:
beamer_presentation:
keep_tex: false
incremental: true
theme: "MUW"
colortheme: "MUW"
includes:
in_header: "header.tex"
---
```{r message=FALSE, warning=FALSE, include=FALSE}
library(dplyr)
library(knitr)
```
# Introduction
Your introduction goes here!
- Item 1
- Item 2
- Item 3
# Figures
{width=80%}
# Figures
You can still use \\includegraphics for a finer control
\includegraphics[width=0.5\linewidth]{Images/image.png}
# Plots
```{r echo=FALSE, fig.height=3, fig.width=3, fig.align='center'}
data(cars)
plot(cars$speed, cars$dist)
```
# Tables
You can easily include R code and results
```{r}
head(cars) %>%
kable(caption = "A sample table")
```
# Readable Mathematics
Formulas can be entered in-line, as in $\overline{X}=\frac{1}{N}\sum_i^N X_i$; or also
in a a new paragraph:
\[\overline{X}=\frac{1}{N}\sum_i^N X_i\]
-----
\begin{center}
\Huge Thanks!
\end{center}