st_align | R Documentation |
See the align
argument to stable()
. This function may be called several
times to specify column alignment.
st_align(x, ...)
st_center(x, ...)
st_left(x, ...)
st_right(x, ...)
x |
an stobject. |
... |
named arguments passed to |
An updated version of x
.
library(dplyr)
ob <- st_new(ptdata())
ob %>% st_align(.default = 'l') %>% stable()
ob %>% st_center(N = 'l') %>% stable()
# This is only to illustrate multiple calls
ob %>%
st_center(N = 'l') %>%
st_align(STUDY = col_ragged(2), WT = 'r') %>%
st_right(N = 'c') %>%
stable()
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.