triangle_plot {TidyDensity} | R Documentation |
Triangle Distribution PDF Plot
Description
This function generates a probability density function (PDF) plot for the triangular distribution.
Usage
triangle_plot(.data, .interactive = FALSE)
Arguments
.data |
Tidy data from the |
.interactive |
A logical value indicating whether to return an interactive plot using plotly. Default is FALSE. |
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.
Value
The function returns a ggplot2 object representing the probability density function plot for the triangular distribution.
Author(s)
Steven P. Sanderson II, MPH
Examples
# Example: Generating a PDF plot for the triangular distribution
data <- tidy_triangular(.n = 50, .min = 0, .max = 1, .mode = 1/2, .num_sims = 1,
.return_tibble = TRUE)
triangle_plot(data)
[Package TidyDensity version 1.5.0 Index]