Learn R Programming

drc (version 1.4-2)

expDecay: Exponential decay model

Description

Exponential decay model with a lower limit

Usage

expDecay(fixed = c(NA, NA, NA), names = c("init", "plateau", "k"))

Arguments

fixed
numeric vector. Specifies which parameters are fixed and at what value they are fixed. NAs for parameter that are not fixed.
names
vector of character strings giving the names of the parameters (should not contain ":"). The default parameter names are: init, plateau, k.

Value

  • A list of class drcMean, containing the mean function, the self starter function, the parameter names and other components such as derivatives and a function for calculating ED values.

Details

The exponential decay model is a three-parameter model with mean function: $$f(x) = init + (plateau-init)(\exp(-k x))$$ The parameter init is the upper limit (attained at x=0), the parameter plateau is the lower limit reached for x going to infinity and the parameter k (>0) is determining the steepness of the decay. Thus the curve is monotonously decreasing in x.

See Also

Similar models giving exponential increasing curves are AR.2 and AR.3.

Examples

Run this code
## Fitting an exponential decay model
ryegrass.m1<-drm(rootl~conc, data=ryegrass, fct=expDecay())

plot(ryegrass.m1)

summary(ryegrass.m1)

Run the code above in your browser using DataLab