This building block defines a model variable as a function of other variables.
Usage
algebraic(definition)
Arguments
definition
A definition of the model variable
Value
A building block of type 'algebraic'
Details
Algebraic relationships are equations where one variable is defined as a function of multiple other variables. assemblerr
uses R formulas to implement these equations. For example, the Emax dose response model
$$effect=emax*dose/(ed50 + dose)$$
could be declared as
algebraic(effect~emax*dose/(ed50+dose))
where the tilde ~ replaced the equal sign = in the definition.