st_notes | R Documentation |
See the notes
and note_config
arguments passed to stable()
and then to
tab_notes()
. The function can be called multiple times and can accumulate
notes
data in various ways. Use st_notes_app()
as a short cut to append
a note to the previous line and st_notes_str()
to convert all existing
notes into a single string.
st_notes(
x,
...,
esc = NULL,
config = NULL,
collapse = "; ",
append = FALSE,
to_string = FALSE
)
x |
an stobject. |
... |
character; one or more table notes. |
esc |
passed to |
config |
named list of arguments for |
collapse |
a character string to separate notes which are pasted together when flattening or appending; this should usually end in a single space (see default). |
append |
logical; if |
to_string |
logical; if |
st_notes_detach()
, st_notes_rm()
, st_notes_str()
, st_notes_app()
library(dplyr)
ob <- st_new(ptdata())
ob %>% st_notes("ALB: albumin (g/dL)") %>% stable()
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.