Main Content

Nonlinear Regression

What is Nonlinear Regression?

The purpose of regression models is to describe a response variable as a function of independent variables. Multiple linear regression models describe the response as a linear combination of coefficients and functions of independent variables. Nonlinearities can be modeled using nonlinear functions of independent variables. However, the coefficients always enter the model in a linear fashion.

Nonlinear regression models are more mechanistic models of nonlinear relationships between the response and independent variables. The parameters can enter the model as exponential, trigonometric, power, or any other nonlinear function. The unknown parameters in the model are estimated by minimizing a statistical criterion such as the negative log likelihood or the sum of squared deviations between observed and predicted values.

In the case of pharmacokinetic (PK) studies, the response data usually represent some measured drug concentrations, and independent variables are often dose and time. The nonlinear function often used for such data is an exponential function since many drugs once distributed in a patient are eliminated in an exponential fashion. One PK parameter to estimate in this case is the rate at which the drug is eliminated from the body given the concentration-time data.

For instance, consider drug plasma concentration data from a single individual after an intravenous bolus dose measured at different time points with some errors. Assume the measured drug concentration follows a monoexponential decline: Ct=C0eket+aε.

This model describes the time course of drug concentration in the body (Ct), as a function of the drug concentration after an intravenous bolus dose at t = 0 (C0), time (t), and elimination rate parameter (ke). ε is the mean-zero and unit-variance variable, that is, εN(0,1) representing the measurement error and a is the error model parameter (here, standard deviation).

More generically, you can write the model as

yi=f(t;p)+g(εi)

where yi is the ith response (such as drug concentration), f is a function of time t and model parameters p (such as ke), and an error model g(εi).

Fitting Options in SimBiology

This table summarizes nonlinear regression options available in SimBiology®.

Fitting OptionExample

Individual-specific parameter estimation (Unpooled fitting)

Fit each individual separately, resulting in one set of parameter estimates for each individual.

Category- or group-specific parameter estimation

Fit each category or group separately, resulting in one set of parameter estimates for each category.

Population-wide parameter estimation (Pooled fitting)

Fit all of the data pooled together, resulting in just one set of parameter estimates.

In addition, SimBiology supports four kinds of error models for measured or observed responses, namely, constant (default), proportional, combined, and exponential. For details, see Error Models. Depending on the optimization method, you can specify an error model for each response or all responses. For details, see Supported Methods for Parameter Estimation in SimBiology.

Parameter Transformations

SimBiology supports three parameter transformations. These parameter transformations can be useful to improve fitting convergence or to enforce parameter bounds.

The general model explained previously is yi=f(t;p)+g(εi), where p is model parameters that you can transform. Consider the following two equations.

β=T(p)

p=T1(β)

Here, β represents transformed model parameters, p represents untransformed model parameters, T is the transformation, and T-1 is the inverse transformation.

SimBiology performs parameter estimation using the transformed parameters β, which means that the transformed model F(t;β)=f(t;T1(β)) is used, where F is the model function using the transformed parameters. Equivalently, the model function can be rewritten as f(t;p)=F(t;T(p)).

In other words, the SimBiology optimizer uses the transformed values during maximum likelihood estimation but the reported fit result is reverted back to the model space (untransformed values). For example, if you are estimating a clearance parameter Cl that is log-transformed, you have Clβ = log(Cl), where Clβ is what the optimizer uses and Cl is what the model sees.

Specifying parameter transformations imposes implicit bounds on the untransformed parameter values. The log transformation keeps the parameter value to be always positive, and the logit and probit transformations keep the parameter value to between 0 and 1. Alternatively, you can specify further constraints on the parameter values by providing explicit bounds for untransformed parameters p or for the transformed parameters β.

TransformationTransformed Parameter and Range†Untransformed Parameter and Range‡Description

log

β=log(p)[Inf,Inf]p=exp(β)[0,Inf]

In many cases, the log transformation is useful for parameters, such as rate constants, whose values might span several orders of magnitude and exploring the parameter space for such parameters. The log transformation can be also useful for positive physical quantities, such as clearance or compartment volume.

Applying the log transformation imposes an implicit bound on the untransformed parameter so that its value is always positive.

logitβ=logit(p) = log(p1p)[Inf,Inf]p=1/(1+exp(β))[0,1]

The logit transformation imposes an implicit bound (between 0 and 1) on the untransformed parameter value. It can be useful for parameters that have values only between 0 and 1, such as bioavailability. Alternatively, you can specify the parameter bounds (using an EstimatedInfo object) instead of specifying the logit transformation.

probitβ=norminv(p)[Inf,Inf]p=normcdf(β)[0,1]

Similar to logit, the probit transformation imposes an implicit bound (between 0 and 1) on the untransformed parameter value. SimBiology uses the normal inverse cumulative distribution function norminv (Statistics and Machine Learning Toolbox).

The probit transformation requires Statistics and Machine Learning Toolbox™.

† Use the InitialTransformedValue and TransformedBounds properties of an EstimatedInfo object to set the initial transformed value and transformed bounds to the desired subset of the range.

‡ Use the InitialValue and Bounds properties of an EstimatedInfo object to set the initial untransformed value and untransformed bounds to the desired subset of the range.

Maximum Likelihood Estimation

SimBiology estimates parameters by the method of maximum likelihood. Rather than directly maximizing the likelihood function, SimBiology constructs an equivalent minimization problem. Whenever possible, the estimation is formulated as a weighted least squares (WLS) optimization that minimizes the sum of the squares of weighted residuals. Otherwise, the estimation is formulated as the minimization of the negative of the logarithm of the likelihood (NLL). The WLS formulation often converges better than the NLL formulation, and SimBiology can take advantage of specialized WLS algorithms, such as the Levenberg-Marquardt algorithm implemented in lsqnonlin and lsqcurvefit. SimBiology uses WLS when there is a single error model that is constant, proportional, or exponential. SimBiology uses NLL if you have a combined error model or a multiple-error model, that is, a model having an error model for each response.

sbiofit supports different optimization methods, and passes in the formulated WLS or NLL expression to the optimization method that minimizes it. For simplicity, each expression shown below assumes only one error model and one response. If there are multiple responses, SimBiology takes the sum of the expressions that correspond to error models of given responses.

 Expression that is being minimized
Weighted Least Squares (WLS)For the constant error model, iN(yifi)2
For the proportional error model, iN(yifi)2fi2/fgm2
For the exponential error model, iN(lnyilnfi)2
For numeric weights, iN(yifi)2wgm/wi
Negative Log-likelihood (NLL)For the combined error model and multiple-error model, iN(yifi)22σi2+iNln2πσi2

The variables are defined as follows.

N

Number of experimental observations

yi

The ith experimental observation

fi

Predicted value of the ith observation

σi

Standard deviation of the ith observation.

  • For the constant error model, σi=a

  • For the proportional error model, σi=b|fi|

  • For the combined error model, σi=a+b|fi|

fgm

fgm=(iN|fi|)1N

wi

The weight of the ith predicted value

wgm

wgm=(iNwi)1N

When you use numeric weights or the weight function, the weights are assumed to be inversely proportional to the variance of the error, that is, σi2=a2wi where a is the constant error parameter. If you use weights, you cannot specify an error model except the constant error model.

Various optimization methods have different requirements on the function that is being minimized. For some methods, the estimation of model parameters is performed independently of the estimation of the error model parameters. The following table summarizes the error models and any separate formulas used for the estimation of error model parameters, where a and b are error model parameters and e is the standard mean-zero and unit-variance (Gaussian) variable.

Error ModelError Parameter Estimation Function
'constant': yi=fi+aea2=1NiN(yifi)2
'exponential': yi=fiexp(ae)a2=1NiN(lnyilnfi)2
'proportional': yi=fi+b|fi|eb2=1NiN(yififi)2
'combined': yi=fi+(a+b|fi|)eError parameters are included in the minimization.
Weightsa2=1NiN(yifi)2wi

Note

nlinfit only support single error models, not multiple-error models, that is, response-specific error models. For a combined error model, it uses an iterative WLS algorithm. For other error models, it uses the WLS algorithm as described previously. For details, see nlinfit (Statistics and Machine Learning Toolbox).

Fitting Workflow

The following steps show one of the workflows you can use at the command line to fit a PK model.

  1. Import data.

  2. Convert the data to the groupedData format.

  3. Define dosing data. For details, see Doses in SimBiology Models.

  4. Create a structural model (one-, two-, or a multicompartment model). For details, see Create Pharmacokinetic Models.

  5. Map the response variable from data to the model component. For example, if you have the measured drug concentration data for the central compartment, then map it to the drug species in the central compartment (typically the Drug_Central species).

  6. Specify parameters to estimate using an EstimatedInfo object. Optionally, you can specify parameter transformations, initial values, and parameter bounds.

  7. Perform parameter estimation using sbiofit or fitproblem.

For illustrated examples, see the following.

See Also

| | |

Related Topics