plot_path {ruin} | R Documentation |
Plot a path of the simulated ruin process
Description
plot_path()
takes a simulated ruin process as the argument and plots
its path.
Usage
plot_path(path_object)
Arguments
path_object |
an S4 object of *Path class (e.g., PathCramerLundberg). |
Details
Under the hood, the function uses ggplot2
package, therefore,
all functionality from ggplot2
is available.
Value
A ggplot2
object.
Examples
model <- CramerLundberg(initial_capital = 10,
premium_rate = 1,
claim_poisson_arrival_rate = 1,
claim_size_generator = rexp,
claim_size_parameters = list(rate = 1))
path <- simulate_path(model = model, max_time_horizon = 10)
plot_path(path)
[Package ruin version 0.1.1 Index]