Created
February 23, 2023 19:47
-
-
Save zeehio/9b631e5b25ff9b1ddeeed2ffe2b64436 to your computer and use it in GitHub Desktop.
Inconsistency in chunk numbering
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
--- | |
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