Rev. | 68d2ff349466d7bbcf6e4065fb5da40f2fbd8ca1 |
---|---|
Tamaño | 232 octetos |
Tiempo | 2022-09-19 18:11:50 |
Autor | Lorenzo Isella |
Log Message | This is the companion Rmd code of the R code to automatically generate a report from Shiny. |
---
title: "Dynamic report"
output: word_document
params:
n: NA
---
```{r}
# The `params` object is available in the document.
params$n
```
A plot of `params$n` random points.
```{r}
plot(rnorm(params$n), rnorm(params$n))
```