plot.int.scale {verification} | R Documentation |
Plots objects from the
int.scale.verify
using the image
function
from the base package and image.plot
from the fields package..
## S3 method for class 'int.scale' plot(x, y = NULL, plot.mse = FALSE, main = NULL, ...)
x |
A object from the |
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 |
Matt Pocernich <pocernic@rap.ucar.edu>
int.scale.verify
,
image
,
image.plot
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")