Plot methods in automap
Defines methods to plot objects in automap.
## S3 method for class 'autoKrige' plot(x, sp.layout = NULL, ...) ## S3 method for class 'posPredictionInterval' plot(x, sp.layout = NULL, justPosition = TRUE, main = "Position prediction interval", ...)
x |
the object to plot (of class |
sp.layout |
An object that can contain lines, points and polygons that function as extra layout. |
justPosition |
logical, if FALSE: not only the plot with the position of the prediction interval is plotted, but also plots with the upper and lower limits of the prediction interval. |
main |
Title of the plot for the position of the prediction interval. |
... |
For a detailed description of how sp.layout
is constructed see spplot.
Paul Hiemstra, paul@numbertheory.nl
# Ordinary kriging data(meuse) coordinates(meuse) =~ x+y data(meuse.grid) gridded(meuse.grid) =~ x+y kriging_result = autoKrige(log(zinc)~1, meuse, meuse.grid) # Adding the sp.layout parameter shows the locations of the measurements plot(kriging_result, sp.layout = list(pts = list("sp.points", meuse)))
Please choose more modern alternatives, such as Google Chrome or Mozilla Firefox.