Skip to content

Commit

Permalink
lintr complains about Quarto example sources
Browse files Browse the repository at this point in the history
  • Loading branch information
aronatkins committed Dec 14, 2023
1 parent 6f492e6 commit 582a538
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions tests/testthat/quarto-proj-r-shiny/quarto-proj-r-shiny.qmd
Original file line number Diff line number Diff line change
Expand Up @@ -15,14 +15,14 @@ This example is taken from the [Quarto website](https://quarto.org/docs/interact
```{r}
#| panel: sidebar
vars <- setdiff(names(iris), "Species")
selectInput('xcol', 'X Variable', vars)
selectInput('ycol', 'Y Variable', vars, selected = vars[[2]])
numericInput('clusters', 'Cluster count', 3, min = 1, max = 9)
selectInput("xcol", "X Variable", vars)
selectInput("ycol", "Y Variable", vars, selected = vars[[2]])
numericInput("clusters", "Cluster count", 3, min = 1, max = 9)
```

```{r}
#| panel: fill
plotOutput('plot1')
plotOutput("plot1")
```

```{r}
Expand Down

0 comments on commit 582a538

Please sign in to comment.