Learn R Programming

ruin (version 0.1.1)

plot_path: 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).

Value

A ggplot2 object.

Details

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

Examples

Run this code
# NOT RUN {
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)

# }

Run the code above in your browser using DataLab