plot.ml_g_fit: A plot method for objects of class ml_g_fit.

Description Usage Arguments Details Value Author(s) References See Also Examples

Description

This function provides a four-way plot for fitted models.

Usage

1
2
## S3 method for class 'ml_g_fit'
plot(x, ...)

Arguments

x

the fitted model.

...

other arguments, retained for compatibility with generic method.

Details

The function plots a summary. The output is structured to broadly match the default options of the plot.lm function.

Value

Run for its side effect of producing a plot object.

Author(s)

Andrew Robinson and Joe Hilbe.

References

Hilbe, J.M., and Robinson, A.P. 2013. Methods of Statistical Model Estimation. Chapman & Hall / CRC.

See Also

ml_g

Examples

1
2
3
4
5
6
data(ufc)
ufc <- na.omit(ufc)

ufc.g.reg <- ml_g(height.m ~ dbh.cm, data = ufc)

plot(ufc.g.reg)

msme documentation built on May 2, 2019, 5:07 a.m.

Related to plot.ml_g_fit in msme...