metab_exponential: Fit an Exponential Function for Modelling Parent Fraction.

View source: R/kinfitr_pfmodels.R

metab_exponentialR Documentation

Fit an Exponential Function for Modelling Parent Fraction.

Description

This function fits the exponential function to parent fraction data.

Usage

metab_exponential(
  time,
  parentFraction,
  fit_ppf0 = FALSE,
  fit_delay = FALSE,
  lower = list(a = 0, b = 0, c = 0, ppf0 = 0.8, delay = -30),
  upper = list(a = 1, b = 1, c = 1, ppf0 = 1.1, delay = 30),
  multstart_lower = NULL,
  multstart_upper = NULL,
  multstart_iter = 100
)

Arguments

time

Time in seconds.

parentFraction

Measured values of parent fraction.

fit_ppf0

Should the starting plasma parent fraction be fitted? Otherwise, it is set to 1. Defaults to FALSE.

fit_delay

Should the delay of the plasma parent fraction be fitted? Otherwise, it is set to 0. Defaults to FALSE.

lower

Named list of the lower limits.

upper

Named list of the upper limits.

multstart_lower

Named list of the lower starting limits.

multstart_upper

Named list of the upper starting limits.

multstart_iter

Number of fits to perform before deciding on an optimal.

Value

An nls fit object.

Examples

## Not run: 
pf <- bd_getdata(blooddata, output = "parentFraction")
metab_exponential(pf$time, pf$parentFraction)

## End(Not run)

mathesong/kinfitr documentation built on Jan. 15, 2024, 11:07 p.m.