--- title: "Example of a precomputed vignette" output: rmarkdown::html_vignette vignette: > %\VignetteIndexEntry{Example of a precomputed vignette} %\VignetteEngine{knitr::rmarkdown} %\VignetteEncoding{UTF-8} --- This is an example of a precomputed vignette: ``` r set.seed(1234) tbl <- data.frame(x = runif(10), y = runif(10)) plot(x = tbl$x, y = tbl$y) ```
plot of chunk plot

plot of chunk plot

Another plot ``` r plot(x = tbl$y, y = tbl$x) ```
plot of chunk plot2

plot of chunk plot2