plot.cope {cope} | R Documentation |
Plots CoPE sets.
Description
Plots CoPE sets.
Usage
## S3 method for class 'cope'
plot(x, ..., taylor = FALSE, use.true.function = FALSE,
colc = "purple", lwdc = 3, ltyc = 1, colp = "darkred", lwdp = 3,
ltyp = 1, colm = "darkgreen", lwdm = 3, ltym = 1,
conlist = list(drawlabels = FALSE))
Arguments
x |
An object of class cope to be plotted. |
... |
Additional graphical parameters passed to fields::image.plot. |
taylor |
Boolean indicating whether the CoPE sets with the threshold obtained by Taylor's method should be plotted. Default is FALSE. |
use.true.function |
Boolean indicating whether the threshold obtained from the true function should be used. Default is FALSE. |
colc |
Color of contour line for |
lwdc |
Width of contour line for |
ltyc |
Type of contour line for |
colp |
Color of contour line for |
lwdp |
Width of contour line for |
ltyp |
Type of contour line for |
colm |
Color of contour line for |
lwdm |
Width of contour line for |
ltym |
Type of contour line for |
conlist |
A list of additional arguments to pass to the |
References
M. Sommerfeld, S. Sain and A. Schwartzman. Confidence regions for excursion sets in asymptotically Gaussian random fields, with an application to climate. Preprint, 2015.
Examples
# An example using the ToyNoise and ToySignal of this package.
## Not run:
n = 30
Data = ToyNoise1(n = n)
Data$z = Data$z + rep(ToySignal()$z, n)
CopeSet = ComputeCope(Data, level=4/3, mu=ToySignal()$z)
plot(CopeSet)
## End(Not run)