Skip to content

Instantly share code, notes, and snippets.

@zeehio
Created February 23, 2023 19:47
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save zeehio/9b631e5b25ff9b1ddeeed2ffe2b64436 to your computer and use it in GitHub Desktop.
Save zeehio/9b631e5b25ff9b1ddeeed2ffe2b64436 to your computer and use it in GitHub Desktop.
Inconsistency in chunk numbering
---
title: "Demo inconsistency"
author: ""
date: ""
output: html_document
---
```{r Chunk1}
Sys.sleep(5)
```
```{r Chunk2}
Sys.sleep(5)
```
```{r}
# Expected: Unnamed chunk 3
Sys.sleep(5)
```
```{r Chunk4}
Sys.sleep(5)
```
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment