Special plot function for automap
This function wraps around spplot and creates a blue-to-whitish colorscale instead of the standard bpy colorscale.
automapPlot(plot_data, zcol, col.regions, ...)
plot_data |
A spatial object that is to be plotted |
zcol |
The name of the column from |
col.regions |
Choose a colors that specify the fill colours. |
... |
arguments that are passed on to spplot. A sp.layout object for example. |
A good function to calculate the position of the colorbreaks the classIntervals
function from the classInt
package.
Paul Hiemstra, paul@numbertheory.nl
# Ordinary kriging data(meuse) coordinates(meuse) =~ x+y data(meuse.grid) gridded(meuse.grid) =~ x+y kriging_result = autoKrige(zinc~1, meuse, meuse.grid) # Adding the sp.layout parameter shows the locations of the measurements automapPlot(kriging_result$krige_output, "var1.pred", sp.layout = list("sp.points", meuse))
Please choose more modern alternatives, such as Google Chrome or Mozilla Firefox.