plot.inhpois {hawkesbow} | R Documentation |
Plot of a simulated inhomogeneous Poisson process
Description
Plots a simulated inhomogeneous Poisson process, highlighting the steps used in Ogata's thinning algorithm.
Usage
## S3 method for class 'inhpois'
plot(x, precision = 1000, ...)
Arguments
x |
A simulated inhomogeneous Poisson process. |
precision |
(default = 1e3) Number of points to plot. |
... |
Only there to fit the declaration of S3 method |
Value
None
Examples
# Simulate an inhomogeneous Poisson process with function intensity 1 + sin(x)
x <- inhpois(end=10, fun=function(y) {1 + sin(y)}, M=2)
plot(x)
[Package hawkesbow version 1.0.3 Index]