Skip to content
This repository has been archived by the owner on Oct 6, 2024. It is now read-only.

Commit

Permalink
Do not eval
Browse files Browse the repository at this point in the history
  • Loading branch information
yutannihilation committed Apr 30, 2022
1 parent db7a3e2 commit 2de1330
Showing 1 changed file with 7 additions and 2 deletions.
9 changes: 7 additions & 2 deletions vignettes/articles/benchmark.Rmd
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,10 @@ knitr::opts_chunk$set(

### Just open and close the device

```{r bench1}
```{r}
#| label: bench1
#| eval: false
library(ggplot2)
file <- tempfile(fileext = '.png')
Expand All @@ -38,7 +41,9 @@ autoplot(res)

### Actual protting

```{r bench2}
```{r}
#| label: bench2
#| eval: false
set.seed(10)
dsamp <- diamonds[sample(nrow(diamonds), 1000), ]
Expand Down

0 comments on commit 2de1330

Please sign in to comment.