• R/O
  • SSH

Commit

Tags
No Tags

Frequently used words (click to add to your profile)

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

Commit MetaInfo

Revisión68d2ff349466d7bbcf6e4065fb5da40f2fbd8ca1 (tree)
Tiempo2022-09-19 18:11:50
AutorLorenzo Isella <lorenzo.isella@gmai...>
CommiterLorenzo Isella

Log Message

This is the companion Rmd code of the R code to automatically generate a report from Shiny.

Cambiar Resumen

Diferencia incremental

diff -r 4724028705d4 -r 68d2ff349466 markdown/report_generator.Rmd
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/markdown/report_generator.Rmd Mon Sep 19 11:11:50 2022 +0200
@@ -0,0 +1,18 @@
1+---
2+title: "Dynamic report"
3+output: word_document
4+params:
5+ n: NA
6+---
7+
8+```{r}
9+# The `params` object is available in the document.
10+params$n
11+```
12+
13+A plot of `params$n` random points.
14+
15+```{r}
16+plot(rnorm(params$n), rnorm(params$n))
17+```
18+