plot.variogram {sgeostat} | R Documentation |
Plot empirical variogram estimates, optionally plotting a fitted variogram model.
## S3 method for class 'variogram'
plot(x, var.mod.obj, title.str,ylim, type='c',N=FALSE, ...)
x |
a variogram object generated by |
var.mod.obj |
a variogram model object generated by a model fitting routine. |
title.str |
optional: an user supplied plot title |
type |
optional: which type of variogram model to plot,
|
N |
logical, toggles printing of absolute pair counts per lag |
ylim |
optonal user supplied y dimension for the plot |
... |
additional arguments for |
NULL
http://www.gis.iastate.edu/SGeoStat/homepage.html
# two plots
oldpar <- par(mfrow=c(2,1))
plot(maas.v)
plot(maas.v,var.mod.obj=maas.vmod)
par(oldpar)