Learn R Programming

Certara.RDarwin (version 1.1.1)

InitialEstimate: Create an object of class InitialEstimate

Description

This function creates an object of class InitialEstimate that contains initial parameter estimates for a model Theta(). The estimates can be passed to the function as a single numeric value or as a vector of length three containing lower bound, estimate, and upper bound. If multiple sets of estimates are required, they can be passed as additional arguments, each separated by commas.

Usage

InitialEstimate(Initial = numeric(), ...)

Value

An object of class InitialEstimate.

Arguments

Initial

Numeric. Initial estimate for the model parameter.

...

Additional initial estimate(s) for the model parameter.

See Also

Functions used for Theta specification: Theta(), create_ModelPD(), create_ModelPK(), modify_Theta()

Examples

Run this code
InitialEstimate(1)
InitialEstimate(c(0, 1, Inf), c(-Inf, 2, 10))

Run the code above in your browser using DataLab