#options(htmltools.dir.version = FALSE) knitr::opts_chunk$set( cache = FALSE, fig.align = "center", dev = "png", fig.retina = 2, fig.asp = 0.681 ) library(tidyverse) theme_set(theme_gray(base_size = 20))
class: center, middle, inverse
Wir können in R einfach addieren.
c(3 + 4, 4 + 3) 5 + 7
??? Notizen
class: center, middle
class: center, middle
Text kann ich hier schreiben
x <- rnorm(n = 100, mean = 4, sd = 2) qplot(x, binwidth = 0.4)
??? Hier stehen Notizen zu dieser Folie - Was kommt - Danach
data %>% select(gender)
Aufzählung 2
Nummerierung
Test Webseitenlink
$$\sum{a_{i}x^{i}}$$
.pull-left[Stichprobengröße 1.000
x <- rnorm(1000) d <- data.frame(x) ggplot(d, aes(x = x)) + geom_histogram(binwidth = 0.2)
] .pull-right[left
x <- rnorm(100) d <- data.frame(x) ggplot(d, aes(x = x)) + geom_histogram(binwidth = 0.2)
]
Stichprobengröße 1.000
x <- rnorm(1000) d <- data.frame(x) ggplot(d, aes(x = x)) + geom_histogram(binwidth = 0.2)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.