plot.BLRPM {BLRPM}R Documentation

Plotting of an object of class BLRPM

Description

plot.BLRPM plots an object of class BLRPM returned by the function BLRPM.sim with an option to plot either only the storms and cells or to additionally plot the stepfunction and the precipitation time series in a multiframe plot.

Usage

## S3 method for class 'BLRPM'
plot(x, ..., OSC = FALSE, start.time = NULL,
  end.time = NULL, legend = TRUE, c.axis = 1.5, c.lab = 1.5,
  c.legend = 1.5)

Arguments

x

class BLRPM object which is returned by function BLRPM.sim

...

Arguments to be passed to methods, such as graphical parameters (see par).

OSC

logical determing type of plot. OSC=True only storms and cells are plotted. OSC=FALSE storms, cells, stepfunction and precipitation time series plotted.

start.time

numerical value setting the starting time of a time window to be plotted. Default is NULL, therefore start time is 0

end.time

numerical value setting the end time of a time window to be plotted. Default is NULL, meaning the plot will end with the last active cell

legend

logical setting the option for legend to be plotted or not

c.axis

numerical value for axis label size, default is 1.5

c.lab

numerical value for plot label size, default is 1.5

c.legend

numerical value for legend font size, default is 1.5

Author(s)

Christoph Ritschel christoph.ritschel@met.fu-berlin.de

See Also

plot

Examples

lambda <- 4/240
gamma <- 1/10
beta <- 0.3
eta <- 2
mux <- 4
t.sim <- 240
t.acc <- t.sim
interval <- 1
offset <- 0
simulation <- BLRPM.sim(lambda,gamma,beta,eta,mux,t.sim,t.acc=t.sim,interval,offset)
plot(simulation,OSC=FALSE)

plot(simulation,OSC=TRUE,start.time=1,end.time=24)


[Package BLRPM version 1.0 Index]