I have question about positioning plots on page in R Markdown. This is little example:
---
title: "Example"
output: pdf_document
---
```{r}
set.seed(1213)
x = cumsum(rnorm(1000))
plot(x, type = 'l')
```
I would like to have this plot on entire page rotated horizontally 90°. It is even possible ?
Thanks in advance!