Skip to content

Commit

Permalink
fix check notes
Browse files Browse the repository at this point in the history
  • Loading branch information
jmgirard committed Oct 27, 2024
1 parent d9ebf36 commit 05e7fd1
Show file tree
Hide file tree
Showing 4 changed files with 3 additions and 6 deletions.
2 changes: 1 addition & 1 deletion R/ssm_table.R
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
#' should be omitted from the output (default = FALSE).
#' @param render A logical indicating whether the table should be displayed in
#' the RStudio viewer or web browser (default = TRUE).
#' @return A tibble containing the information for the HTML table. As a
#' @return A data frame containing the information for the HTML table. As a
#' side-effect, may also output the HTML table to the web viewer.
#' @family ssm functions
#' @family table functions
Expand Down
2 changes: 1 addition & 1 deletion man/ssm_table.Rd

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

3 changes: 1 addition & 2 deletions vignettes/intermediate-ssm-analysis.Rmd
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,6 @@ vignette: >
knitr::opts_chunk$set(collapse = TRUE, comment = "#>")
library(ggplot2)
library(ggforce)
library(tibble)
library(kableExtra)
set.seed(12345)
```
Expand Down Expand Up @@ -261,7 +260,7 @@ If yes, we must specify a `grouping` variable, and the output will contain resul
## 4. Working with SSM tables

### Basic customizations of tables
Additional arguments to the `ssm_table()` function can be explored using the `?ssm_table` command. Two useful options are the `drop_xy` argument, which shows or hides the x-value and y-value columns, and the `caption` argument which allows a custom string to be printed above the table. Note as well that the return object of this function is just a tibble or data frame, which can be easily edited to add, change, or remove text. To change the formatting of the table, see the `htmlTable` or `kableExtra` packages.
Additional arguments to the `ssm_table()` function can be explored using the `?ssm_table` command. Two useful options are the `drop_xy` argument, which shows or hides the x-value and y-value columns, and the `caption` argument which allows a custom string to be printed above the table. Note as well that the return object of this function is just a data frame, which can be easily edited to add, change, or remove text. To change the formatting of the table, see the `htmlTable` or `kableExtra` packages.

## 5. Working with SSM figures

Expand Down
2 changes: 0 additions & 2 deletions vignettes/introduction-to-ssm-analysis.Rmd
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,6 @@ set.seed(12345)
library(ggforce)
library(kableExtra)
library(ggplot2)
library(tibble)
library(dplyr)
library(knitr)
```

Expand Down

0 comments on commit 05e7fd1

Please sign in to comment.