Nothing
knitr::opts_chunk$set(echo = TRUE) library(reproducibleRchunks)
This test suite is for manual testing of whether code chunk options work properly. We are testing the following chunk options:
include
runs the code but doesn’t show the code or results in the documentecho
prevents code, but not the results from appearing in the documentThis is supposed to show code, results and report:
a <- 1 b <- a + 10 b
This is supposed to show results and report but not the code:
summe <- a + b summe
This is supposed to only show the result (12)
summe2 <- a + b summe2
This is supposed to only show the code
summe3 <- a + b summe3
This is supposed to show code, results and report:
a <- 1 b <- a + 10 b
Any scripts or data that you put into this service are public.
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.