R course
Daniel Vaulot
2023-01-22
Markdown and Quarto
[On-line Book][https://bookdown.org/yihui/rmarkdown]
Created in 2004 by John Gruber and Aaron Swartz
Goal : “to write using an easy-to-read and easy-to-write plain text format, optionally convert it to structurally valid HTML”.
Markdown
R code (“chunks”)
Output of R code
Options | Default value | Aim |
---|---|---|
echo | TRUE | Print code (= FALSE in a report for example) |
eval | TRUE | Evaluate code (= FALSE if want to show code only) |
warning | TRUE | Warning message (= FALSE to remove long warnings) |
message | TRUE | Messages (= FALSE to remove long messages) |
cache | FALSE | If TRUE only modified chunks will be evaluated |
very useful for computing heavy codes | ||
fig.height | inches | |
fig.width | inches |
https://github.com/yihui/xaringan
https://github.com/brentthorne/posterdown
https://cloud.r-project.org/web/packages/vitae/index.html
https://bookdown.org/yihui/blogdown/
R - markdown and Quarto