Calculation of parameters in the re-parameterization of the Michaelis-Menten model that is commonly used to assess yield loss (the rectangular hyperbola model)
interval: character string specifying the type of confidence intervals to be supplied. The default is "none". Use "as" for asymptotically-based confidence intervals.
level: numeric. The level for the confidence intervals. The default is 0.95.
display: logical. If TRUE results are displayed. Otherwise they are not (useful in simulations).
Details
The rectangular hyperbola model is a reparameterization of the Michaelis-Menten in terms of parameters A and I
YL=1+Id/AId
where d denotes the weed density and YL the resulting yield loss.
Returns
For each of the two parameters, a matrix with two or more columns, containing the estimates and the corresponding estimated standard errors and possibly lower and upper confidence limits.
References
Cousens, R. (1985). A simple model relating yield loss to weed density, Ann. Appl. Biol., 107 , 239--252.
Author(s)
Christian Ritz
Note
This function is only for use with model fits based on Michaelis-Menten models.
Examples
## Fitting Michaelis-Menten modelmet.mm.m1 <- drm(gain~dose, product, data = methionine, fct = MM.3(),pmodels = list(~1,~factor(product),~factor(product)))## Yield loss parameters with standard errrorsyieldLoss(met.mm.m1)## Also showing confidence intervalsyieldLoss(met.mm.m1,"as")