set_data | R Documentation |
Set a controller data set
set_data(ctr, ..., envir = parent.frame())
ctr |
the controller object |
... |
a named list parameters (see example) |
envir |
the |
This function can be used to set an existing data set or to create a new one. The basic idea is to change the built-in data set (change the factor level names, change some rows values or apply any other data set operation) and use the new data set using the dname parameter of pmx_plot family functions.
Other pmxclass:
get_cats()
,
get_conts()
,
get_covariates()
,
get_data()
,
get_occ()
,
get_plot_config()
,
get_plot()
,
get_strats()
,
plot_names()
,
plots()
,
pmx_update()
,
set_plot()
ctr <- theophylline()
dx <- ctr %>% get_data("eta")
dx <- dx[, EFFECT := factor(
EFFECT,
levels = c("ka", "V", "Cl"),
labels = c("Concentration", "Volume", "Clearance")
)]
## update existing data set
ctr %>% set_data(eta = dx)
## or create a new data set
ctr %>% set_data(eta_long = dx)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.