check: Checking for issues

Description Usage Arguments Details Value Examples

View source: R/issues.R

Description

This function checks a model for existing issues.

Usage

1

Arguments

model

Model to check

Details

The function accepts a model object and returns a list of issues that can help to identify problems in a model. If no issues are found, a message and an empty list are produced. Issues can either be critical or non-critical, depending on whether a valid model could still be rendered.

The function currently detects the following issues:

Value

An issue list (printed to the console by default)

Examples

1
2
3
4
5
6
7
8
9
m <- model() +
    prm_log_normal("emax") +
    prm_log_normal("ed50") +
    obs_additive(eff~emax*dose/(ed50+dose))
check(m)

# fix issue
m <- m + input_variable("dose")
check(m)

assemblerr documentation built on Jan. 13, 2022, 1:07 a.m.