Provide a list of options to vpc_data
function.
Binning method, can be one of 'density', 'time', 'data', 'none', or one of the approaches
available in classInterval()
such as 'jenks' (default), 'pretty', or a numeric vector specifying
the bin separators.
When using the 'auto' binning method, what number of bins to aim for.
Specify how to is the mid bin value calculated, can be either 'mean' for the mean of all timepoints (default) or 'middle' to use the average of the bin boundaries.
Option reserved to continuous VPC. Logical, should a prediction correction (pcVPC) of the data be used.
Option reserved to continuous VPC. Lower bound for the prediction-correction.
Option reserved to continuous VPC. Simulated prediction interval to plot. Default is c(0.05, 0.95).
Confidence interval around the percentiles to plot. Default is c(0.05, 0.95)
Number or NULL indicating lower limit of quantification. Default is NULL.
Number or NULL indicating upper limit of quantification. Default is NULL.
Option reserved to time-to-event VPC. Is the data repeated time-to-event (RTTE) TRUE
or
single time-to-event (TTE) FALSE
.
Option reserved to time-to-event VPC. Should the time be recalculated? When simulating in NONMEM,
you will probably need to set this to TRUE
to recalculate the TIME to the relative time between events (unless you
output the time difference between events and specify that as independent variable in the index.
Option reserved to time-to-event VPC. Numeric vector describing which events to show a VPC for when
repeated TTE data, e.g. c(1:4). Default is NULL
, which shows all events.
Option reserved to time-to-event VPC. Either NULL for regular TTE VPC (default), or a variable name for a KMMC plot (e.g. 'WT').
Option reserved to time-to-event VPC. Should the probability be reversed (i.e. plot 1-probability).
Should the Y-scale be in percent (0-100) TRUE
(default), or standard (0-1) FALSE
.
vpc_opt()
#> $bins
#> [1] "jenks"
#>
#> $n_bins
#> [1] "auto"
#>
#> $bin_mid
#> [1] "mean"
#>
#> $pred_corr
#> [1] FALSE
#>
#> $pred_corr_lower_bnd
#> [1] 0
#>
#> $pi
#> [1] 0.025 0.975
#>
#> $ci
#> [1] 0.025 0.975
#>
#> $lloq
#> NULL
#>
#> $uloq
#> NULL
#>
#> $rtte
#> [1] FALSE
#>
#> $rtte_calc_diff
#> [1] TRUE
#>
#> $events
#> NULL
#>
#> $kmmc
#> NULL
#>
#> $reverse_prob
#> [1] FALSE
#>
#> $as_percentage
#> [1] TRUE
#>
#> $usr_call
#> NULL
#>