| ryegrass {drc} | R Documentation |
A single dose-response curve.
data(ryegrass)
A data frame with 24 observations on the following 2 variables.
The data are part of a study to investigate the joint action of phenolic acids on root growth inhibition of perennial ryegrass (Lolium perenne L).
conc is the concentration of ferulic acid is in mM, and rootl is the root length
of perennial ryegrass.
Inderjit and J. C. Streibig, and M. Olofsdotter (2002) Joint action of phenolic acid mixtures and its significance in allelopathy research, Physiologia Plantarum, 114, 422–428, 2002.
## Displaying the data set
ryegrass
## Fitting a four-parameter logistic regression
## with user-defined parameter names
model1 <- drm(rootl ~ conc, data = ryegrass,
fct = LL.4(names = c("Slope", "Lower Limit", "Upper Limit", "ED50")))
## Displaying a summary of the fit
summary(model1)