class: center, middle, inverse, title-slide # R Basiskurs Beispiel (xaringan) ## Descriptive Statistics in R
### Maximilian Mandl & Daniel Schalk ### 12. April – 13. April 2018 --- # Graphics in R `R` is a powerful tool to generate graphics. The simplest way to produce graphics is to use the `plot` function: ```r par(mar = c(4,4,0.1,0.1)) x = seq(0, 2*pi, length = 8) y = sin(x) plot(x, y) ``` <img src="basis_descriptive_files/figure-html/unnamed-chunk-22-1.png" width="768" />