powered by
Generates a Duane plot (log-log or linear scale) with fitted regression line and optional confidence bounds.
# S3 method for duane plot( x, log = TRUE, conf.int = TRUE, legend = TRUE, legend.pos = "topleft", ... )
Invisibly returns NULL.
NULL
An object of class "duane".
"duane"
Logical; whether to use logarithmic scales for axes (default: TRUE).
TRUE
Logical; whether to plot confidence bounds (default: TRUE).
Logical; whether to include a legend (default: TRUE).
Position of the legend (default: "topleft").
Further arguments passed to plot().
plot()
Other Duane functions: duane(), print.duane()
duane()
print.duane()
times <- c(100, 200, 300, 400, 500) failures <- c(1, 2, 1, 3, 2) fit <- duane(times, failures) plot(fit, main = "Duane Plot", xlab = "Cumulative Time", ylab = "Cumulative MTBF")
Run the code above in your browser using DataLab