plot_pp: P-P Plot

Description Usage Arguments Value Examples

View source: R/diagnostics.R

Description

P-P Plot

Usage

1
plot_pp(x, fits)

Arguments

x

numeric vector of sample data

fits

a list object produced from fit_univariate, fit_empirical, or fit_univariate_man

Value

ggplot of percentile-percentile comparison of theoretical distribution

Examples

1
2
3
4
5
6
7
library(ggplot2)
set.seed(37)
x <- rgamma(10000, 5)
dists <- c('gamma', 'lnorm', 'weibull')
fits <- lapply(dists, fit_univariate, x = x)
plot_pp(x, fits) +
theme_bw()

fitur documentation built on Oct. 6, 2021, 5:06 p.m.