plot.MPP {QRMlib}R Documentation

Plot Marked Point Process

Description

creates a picture of a marked point process

Usage

## S3 method for class 'MPP':
plot(x, ...)

Arguments

x a point process object of class MPP (marked point process)
... further parameters which may be passed to the plot function (see R help about the plot function for further information)

Details

Creates an appropriate plot on graphical device. The input variable PP will be internally separated into x and y values to pass to plot()

Author(s)

documentation by Scott Ulman for R-language distribution

See Also

extremalPP

Examples

data(sp500);
sp500.nreturns <- -mk.returns(sp500);
window <- (seriesPositions(sp500.nreturns) > 
      timeDate("1995-12-31",format = "%Y-%m-%d")) &
        (seriesPositions(sp500.nreturns) < 
            timeDate("2004-01-01",format = "%Y-%m-%d"));
sp500.nreturns <- sp500.nreturns[window];
tmp <- extremalPP(sp500.nreturns,ne=100);
plot.MPP(tmp);

[Package QRMlib version 1.4.4 Index]