plot.mle: Diagnostic Plots for the Fitted Model

View source: R/plot.mle.R

plot.mleR Documentation

Diagnostic Plots for the Fitted Model

Description

This function returns diagnotic plots for a mle object.

Usage

## S3 method for class 'mle'
plot(x, ci = FALSE, alpha = 0.05,...)

Arguments

x

mle object corresponding to the fitted model.

ci

Whether or not approximate confidence intervals should be added to the return period and quantile plots.

alpha

1-alpha is the requested coverage probability for the confidence interval.

...

none...

See Also

mle, Q.conf.int

Examples

data(yarns)
x <- yarns$x
fit.1 <- mle(x,'weibull',c(.1,.1))
fit.2 <- mle(x,'logis',c(.1,.1))
plot(fit.1,TRUE,.05)
dev.new();plot(fit.2,TRUE,.05)

FAmle documentation built on March 18, 2022, 5:29 p.m.