• R/O
  • SSH

Tags
No Tags

Frequently used words (click to add to your profile)

javac++androidlinuxc#windowsobjective-ccocoa誰得qtpythonphprubygameguibathyscaphec計画中(planning stage)翻訳omegatframeworktwitterdomtestvb.netdirectxゲームエンジンbtronarduinopreviewer

File Info

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.

Content

---
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))
```