This function generates a probability density function (PDF) plot for the triangular distribution.
Usage
triangle_plot(.data, .interactive = FALSE)
Value
The function returns a ggplot2 object representing the probability density function plot for the triangular distribution.
Arguments
.data
Tidy data from the tidy_triangular function.
.interactive
A logical value indicating whether to return an interactive plot using plotly. Default is FALSE.
Author
Steven P. Sanderson II, MPH
Details
The function checks if the input data is a data frame or tibble, and if it comes from the tidy_triangular
function. It then extracts necessary attributes for the plot and creates a PDF plot using ggplot2. The plot
includes data points and segments to represent the triangular distribution.