st_rename | R Documentation |
See the cols_rename
argument passed to stable()
and then tab_cols()
.
This function can be called multiple times and will accumulate cols_rename
data.
st_rename(x, ..., .list = NULL)
x |
an stobject |
... |
column rename items in |
.list |
a named list of rename data with the format
|
library(dplyr)
st_new(stdata()) %>% st_rename(weight = WT) %>% stable()
st_new(stdata()) %>% st_rename(.list = list(WT = "weight")) %>% stable()
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.