status_table: Get status of multiple runs in form of table

View source: R/monitoring.R

status_tableR Documentation

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)

Arguments

m

An nm object.

Value

A tibble object.

Examples


# 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

NMproject documentation built on Sept. 30, 2022, 1:06 a.m.