Learn R Programming

LW1949 (version 1.1.0)

predLines: Add Litchfield and Wilcoxon Predictions to a Plot

Description

Add predictions from a Litchfield and Wilcoxon model fit to a plot of the results of a dose-effect experiment on the arithmetic scale.

Usage

predLines(fit, ...)

Arguments

fit
A list of length three containing the result of a Litchfield and Wilcoxon model fit, typically the output from LWestimate.
...
Additional arguments to lines.

Value

A solid fitted line is added to the plot. Dashed lines are added to the plot representing the horizontal 95% confidence intervals for the predicted dose to elicit a given percent affected.

See Also

plotDE, plotDELP, predLinesLP

Examples

Run this code
dose <- c(0.0625, 0.125, 0.25, 0.5, 1)
ntested <- rep(8, 5)
nalive <- c(1, 4, 4, 7, 8)
mydat <- dataprep(dose=dose, ntot=ntested, nfx=nalive)
plotDE(mydat)
myfit <- LWestimate(fitLWauto(mydat), mydat)
predLines(myfit)

Run the code above in your browser using DataLab