Learn R Programming

NMproject (version 0.6.9)

status_table: Get status of multiple runs in form of table

Description

[Stable]

A more friendly version of status() for vector valued nm objects. Useful after bootstraps, or stepwise covariate method steps, or any situation dealing with groups of NONMEM runs.

Usage

status_table(m)

Value

A tibble object.

Arguments

m

An nm object.

Examples

Run this code

# create example object m1 from package demo files
exdir <- system.file("extdata", "examples", "theopp", package = "NMproject")
m1 <- new_nm(run_id = "m1", 
             based_on = file.path(exdir, "Models", "ADVAN2.mod"),
             data_path = file.path(exdir, "SourceData", "THEOPP.csv"))
             
c(m1, m1) %>% status_table()  ## both not started

Run the code above in your browser using DataLab