Created
April 14, 2022 09:53
-
-
Save simon-anders/5c2f26ab48b2c8e700957aa38e557a2b to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
## Beispiel für Plot-Größe | |
Tidyverse laden: | |
```{r} | |
library( tidyverse ) | |
``` | |
Wir benutzen `mtcars`, eine Standard-Beispiel-Tabelle von R mit technischen Daten | |
für (recht alte) Autos: | |
```{r} | |
mtcars | |
``` | |
Nun plotten wir Verbrauch (in Meilen pro Gallone) gegen Hubraum (in Kubikzoll) | |
```{r} | |
mtcars %>% ggplot + geom_point( aes( x=disp, y=mpg ) ) | |
``` | |
Das war ein Plot in STandard-Größe. Wir können den Plot etwas kleiner | |
machen, indem wir eine Chunk-Option benuzten: | |
```{r fig.height=2, fig.width=3} | |
mtcars %>% ggplot + geom_point( aes( x=disp, y=mpg ) ) | |
``` | |
Die Chunk-Optionen `fig.height=2, fig.width=3` gehören in den Chunk-Header, stehen also neben dem `r` in dem `{r}`, dass am Anfang jedes Code-Chunks steht. | |
Hier ist der Plot extra groß: | |
```{r fig.height=10, fig.width=12} | |
mtcars %>% ggplot + geom_point( aes( x=disp, y=mpg ) ) | |
``` | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment