plot.int.scale {verification}R Documentation

Plot Intensity Scale Objects.

Description

Plots objects from the int.scale.verify using the image function from the base package and image.plot from the fields package..

Usage

     ## S3 method for class 'int.scale'
plot(x, y = NULL, plot.mse = FALSE, main = NULL, ...)
       

Arguments

x

A object from the int.scale.verify function that has the class int.scale.

y

NULL

plot.mse

Should a plot be created of the mean squared errors? By default the skill scores are plotted.

main

Plot title

...

Optional arguments

Author(s)

Matt Pocernich <pocernic@rap.ucar.edu>

See Also

int.scale.verify, image, image.plot

Examples

data(analysis.dat)
data(forecast.dat)

A<- int.scale.verify(forecast.dat, analysis.dat, thres = c(0, 2^seq(-5,6)))
plot(A)
plot(A, plot.mse = TRUE)
plot(A, main = "Test case")

[Package verification version 1.31 Index]