plot_path function

Plot a path of the simulated ruin process

Plot a path of the simulated ruin process

plot_path() takes a simulated ruin process as the argument and plots its path.

plot_path(path_object)

Arguments

  • path_object: an S4 object of *Path class (e.g., PathCramerLundberg ).

Returns

A ggplot2 object.

Details

Under the hood, the function uses ggplot2 package, therefore, all functionality from ggplot2 is available.

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)
  • Maintainer: Iegor Rudnytskyi
  • License: GPL-3
  • Last published: 2018-07-30