plot.mle {FAmle} | R 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 |
|
ci |
Whether or not approximate confidence intervals should be added to the return period and quantile plots. |
alpha |
|
... |
none... |
See Also
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)
[Package FAmle version 1.3.7 Index]