plot_change_points {decp}R Documentation

Plot Change Points

Description

This function creates a density plot of change points from estimation results.

Arguments

estimation_results

A list of estimation results.

ordered_change_points

A vector of ordered change points.

Value

A ggplot object.

Examples

# Example usage
estimation_results <- list(estimation_vecRW_01 = rnorm(100), estimation_vecRW_02 = rnorm(100))
ordered_change_points <- c(50, 150)
plot_change_points(estimation_results, ordered_change_points)

[Package decp version 0.1.0 Index]