st_select | R Documentation |
These functions modify the input data frame prior to passing it to
stable()
or stable_long()
.
st_select(x, ...)
st_mutate(x, ...)
st_filter(x, ...)
x |
an stobject. |
... |
passed to |
st_select
calls dplyr::select
on the data
st_mutate
calls dplyr::mutate
on the data
st_filter
calls dplyr::filter
on the data
tab <- pt_data_inventory(pmt_obs, by = "FORM")
obj <- st_new(tab)
st_filter(obj, FORM != "troche")
st_select(obj, -contains("BQL"))
st_mutate(obj, FORM = ifelse(FORM=="tablet", "ODT", FORM))
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.