Learn R Programming

geoR (version 1.2-5)

image.krige.bayes: Plots Results of the Predictive Distribution

Description

This function produces an image or perspective plot of a selected element of the predictive distribution returned by the function krige.bayes.

Usage

## S3 method for class 'krige.bayes':
image(x, locations, borders,
                  values.to.plot=c("mean", "variance",
                            "mean.simulations", "variance.simulations",
                            "quantiles", "probabilities", "simulation"),
                  number.col, coords.data, x.leg, y.leg, cex.leg = 0.75,
                  vertical = FALSE, ...)

## S3 method for class 'krige.bayes': persp(x, locations, borders, values.to.plot=c("mean", "variance", "mean.simulations", "variance.simulations", "quantiles", "probabilities", "simulation"), number.col, ...)

Arguments

x
an object of the class krige.bayes, typically an output of the function krige.bayes.
locations
an $n \times 2$ matrix with the coordinates of the prediction locations, which should define a regular grid in order to be plotted by image or persp
borders
an $n \times 2$ matrix with the coordinates defining the borders of a region inside the grid defined by locations. Elements in the argument values are assigned to locations internal to the borders and NA
values.to.plot
select the element of the predictive distribution to be plotted. See DETAILS below.
number.col
Specifies the number of the column to be plotted. Only used if previous argument is set to one of "quantiles", "probabilities" or "simulation".
coords.data
optional. If an $n \times 2$ matrix with the data coordinates is provided, points indicating the data locations are included in the plot.
x.leg
limits for the legend in the $x$ direction.
y.leg
limits for the legend in the $y$ direction.
cex.leg
controls the size of the numerical values in the legend.
vertical
logical, defining whether the legend is drawn in horizontal (default) or vertical position.
...
extra arguments to be passed to the plotting function image or persp.

Value

  • An image or persp plot is produced on the current graphics device. No values are returned.

Details

The function krige.bayes returns summaries and other results about the predictive distributions. The argument values.to.plot specifies which result will be plotted. It can be passed to the function in two different forms:
  • a vector with the object containing the values to be plotted, or
  • one of the following options:"moments.mean","moments.variance","mean.simulations","variance.simulations","quantiles","probability"or"simulation".
For the last three options, if the results are stored in matrices, a column number must be provided using the argument number.col.

The documentation for the function krige.bayes provides further details about these options.

References

Further information about geoR can be found at: http://www.maths.lancs.ac.uk/~ribeiro/geoR.

See Also

krige.bayes for Bayesian Kriging computations and, image and persp for the generic plotting functions.

Examples

Run this code
#See examples in the documentation for the function krige.bayes().

Run the code above in your browser using DataLab