ggPMX (version 0.9.4)

set_data: Set a controller data set

Description

Set a controller data set

Usage

set_data(ctr, ...)

Arguments

ctr

the controller object

...

a named list parameters (see example)

Details

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.

See Also

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

Examples

Run this code
# NOT RUN {
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)
# }

Run the code above in your browser using DataCamp Workspace