The plot, lines, and points methods for univariateML objects.

# S3 method for univariateML
plot(x, range = NULL, ...)

# S3 method for univariateML
lines(x, range = NULL, ...)

# S3 method for univariateML
points(x, range = NULL, ...)

Arguments

x

a univariateML object.

range

range of x values to plot, i.e. c(lower, upper).

...

parameters passed to plot, lines, or points.

Value

An invisible copy of x.

Examples

plot(mlweibull(datasets::precip), main = "Annual Precipitation in US Cities")
lines(mlgamma(datasets::precip), lty = 2)
rug(datasets::precip)