Skip to content

Commit

Permalink
vignette bug fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
Timothy Keyes committed Aug 25, 2024
1 parent cd770dc commit ace89c7
Show file tree
Hide file tree
Showing 11 changed files with 49 additions and 3 deletions.
4 changes: 4 additions & 0 deletions vignettes/clustering.Rmd
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,10 @@ knitr::opts_chunk$set(
collapse = TRUE,
comment = "#>"
)
options(
rmarkdown.html_vignette.check_title = FALSE
)
```

```{r setup, message = FALSE, warning = FALSE}
Expand Down
5 changes: 5 additions & 0 deletions vignettes/contributing-to-tidytof.Rmd
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,11 @@ knitr::opts_chunk$set(
collapse = TRUE,
comment = "#>"
)
options(
rmarkdown.html_vignette.check_title = FALSE
)
```


Expand Down
4 changes: 4 additions & 0 deletions vignettes/differential-discovery-analysis.Rmd
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,10 @@ knitr::opts_chunk$set(
collapse = TRUE,
comment = "#>"
)
options(
rmarkdown.html_vignette.check_title = FALSE
)
```

```{r setup, message = FALSE}
Expand Down
4 changes: 4 additions & 0 deletions vignettes/dimensionality-reduction.Rmd
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,10 @@ knitr::opts_chunk$set(
collapse = TRUE,
comment = "#>"
)
options(
rmarkdown.html_vignette.check_title = FALSE
)
```

```{r setup, message = FALSE}
Expand Down
4 changes: 4 additions & 0 deletions vignettes/downsampling.Rmd
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,10 @@ knitr::opts_chunk$set(
fig.height = 4,
fig.width = 4
)
options(
rmarkdown.html_vignette.check_title = FALSE
)
```

```{r setup, message = FALSE}
Expand Down
4 changes: 4 additions & 0 deletions vignettes/feature-extraction.Rmd
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,10 @@ knitr::opts_chunk$set(
collapse = TRUE,
comment = "#>"
)
options(
rmarkdown.html_vignette.check_title = FALSE
)
```

```{r setup}
Expand Down
4 changes: 4 additions & 0 deletions vignettes/modeling.Rmd
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,10 @@ knitr::opts_chunk$set(
collapse = TRUE,
comment = "#>"
)
options(
rmarkdown.html_vignette.check_title = FALSE
)
```

```{r setup}
Expand Down
7 changes: 6 additions & 1 deletion vignettes/preprocessing.Rmd
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,12 @@ knitr::opts_chunk$set(
comment = "#>"
)
options(tibble.print_min = 4L, tibble.print_max = 4L)
options(
tibble.print_min = 4L,
tibble.print_max = 4L,
rmarkdown.html_vignette.check_title = FALSE
)
```

```{r setup, message = FALSE}
Expand Down
4 changes: 4 additions & 0 deletions vignettes/quality-control.Rmd
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,10 @@ knitr::opts_chunk$set(
message = FALSE,
comment = "#>"
)
options(
rmarkdown.html_vignette.check_title = FALSE
)
```

```{r setup}
Expand Down
6 changes: 5 additions & 1 deletion vignettes/reading-and-writing-data.Rmd
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,11 @@ knitr::opts_chunk$set(
comment = "#>"
)
options(tibble.print_min = 4L, tibble.print_max = 4L)
options(
tibble.print_min = 4L,
tibble.print_max = 4L,
rmarkdown.html_vignette.check_title = FALSE
)
```

```{r setup, message = FALSE}
Expand Down
6 changes: 5 additions & 1 deletion vignettes/tidytof.Rmd
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,11 @@ knitr::opts_chunk$set(
comment = "#>"
)
options(tibble.print_min = 4L, tibble.print_max = 4L)
options(
tibble.print_min = 4L,
tibble.print_max = 4L,
rmarkdown.html_vignette.check_title = FALSE
)
```

```{r setup, message = FALSE, include = FALSE}
Expand Down

0 comments on commit ace89c7

Please sign in to comment.