Skip to content

Instantly share code, notes, and snippets.

@ivelasq
Created July 28, 2025 17:47
Show Gist options
  • Select an option

  • Save ivelasq/05d629f1ed142551d76c797b4f25d352 to your computer and use it in GitHub Desktop.

Select an option

Save ivelasq/05d629f1ed142551d76c797b4f25d352 to your computer and use it in GitHub Desktop.
R Markdown Results Fold
---
title: R Markdown Results Fold
---
```{r}
#| eval: false
plot(mtcars$mpg, mtcars$hp)
```
<details><summary>See results</summary>
```{r}
#| echo: false
plot(mtcars$mpg, mtcars$hp)
```
</details>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment