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)
path_object
: an S4 object of *Path class (e.g., PathCramerLundberg ).A ggplot2
object.
Under the hood, the function uses ggplot2
package, therefore, all functionality from ggplot2
is available.
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)