├── .Rbuildignore ├── .github ├── ISSUE_TEMPLATE │ ├── bug_report.md │ └── feature_request.md ├── copilot-instructions.md └── instructions │ └── r.instructions.md ├── .gitignore ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── DESCRIPTION ├── LICENSE ├── LICENSE.md ├── NAMESPACE ├── NEWS.md ├── R ├── 00_global_variables.R ├── augment-bootstrap-density.R ├── augment-bootstrap-p.R ├── augment-bootstrap-q.R ├── autoplot-combined-dist.R ├── autoplot-four-graphs.R ├── autoplot-multi-dist.R ├── autoplot-randomwalk.R ├── autoplot-triangular.R ├── autoplot.R ├── bootstrap-unnest-tbl.R ├── combine-multi-single-dist-tbl.R ├── combine-tidy-distributions-tbl.R ├── empirical-tidy-bootstrap.R ├── empirical-tidy.R ├── est-param-bernoulli.R ├── est-param-beta.R ├── est-param-binomial.R ├── est-param-burr.R ├── est-param-cauchy.R ├── est-param-chisq.R ├── est-param-exponential.R ├── est-param-f.R ├── est-param-gamma.R ├── est-param-gen-beta.R ├── est-param-gen-pareto.R ├── est-param-geometric.R ├── est-param-hypergeometric.R ├── est-param-inv-burr.R ├── est-param-inv-pareto.R ├── est-param-inv-weibull.R ├── est-param-logistic.R ├── est-param-lognormal.R ├── est-param-negative-binomial.R ├── est-param-normal.R ├── est-param-paralogistic.R ├── est-param-pareto.R ├── est-param-pareto1.R ├── est-param-poisson.R ├── est-param-t.R ├── est-param-triangular.R ├── est-param-uniform.R ├── est-param-weibull.R ├── est-param-zt-binom.R ├── est-param-zt-geometric.R ├── est-param-ztn-binmoial.R ├── est-param-ztpois.R ├── helper-dist-type-extract.R ├── palette-color-blind.R ├── plot-bootstrap-stat.R ├── random-tidy-bernoulli.R ├── random-tidy-beta.R ├── random-tidy-binomial.R ├── random-tidy-burr-inverse.R ├── random-tidy-burr.R ├── random-tidy-cauchy.R ├── random-tidy-chisquare.R ├── random-tidy-exponential-inverse.R ├── random-tidy-exponential.R ├── random-tidy-f.R ├── random-tidy-gamma-inverse.R ├── random-tidy-gamma.R ├── random-tidy-general-beta.R ├── random-tidy-general-pareto.R ├── random-tidy-geom.R ├── random-tidy-hypergeometric.R ├── random-tidy-logistic.R ├── random-tidy-lognormal.R ├── random-tidy-mixture.R ├── random-tidy-negative-binomial.R ├── random-tidy-normal-inverse.R ├── random-tidy-normal.R ├── random-tidy-paralogistic.R ├── random-tidy-pareto-inverse.R ├── random-tidy-pareto-single-param.R ├── random-tidy-pareto.R ├── random-tidy-poisson.R ├── random-tidy-t.R ├── random-tidy-triangular.R ├── random-tidy-uniform.R ├── random-tidy-weibull-inverse.R ├── random-tidy-weibull.R ├── random-tidy-zero-truc-poisson.R ├── random-tidy-zero-trunc-geometric.R ├── random-tidy-zero-truncated-binomial.R ├── random-zero-trunc-negative-binomial.R ├── stats-bernoulli-tbl.R ├── stats-beta-tbl.R ├── stats-binomial-tbl.R ├── stats-burr-tbl.R ├── stats-cauchy-tbl.R ├── stats-chisquare-tbl.R ├── stats-confidence-intervals.R ├── stats-exponential-tbl.R ├── stats-f-tbl.R ├── stats-gamma-tbl.R ├── stats-gen-beta-tbl.R ├── stats-gen-pareto-tbl.R ├── stats-geometric-tbl.R ├── stats-hypergeometric-tbl.R ├── stats-inv-burr-tbl.R ├── stats-inv-pareto-tbl.R ├── stats-inv-weibull-tbl.R ├── stats-logistic-tbl.R ├── stats-lognormal-tbl.R ├── stats-negative-binomial-tbl.R ├── stats-normal-tbl.R ├── stats-paarlogistic-tbl.R ├── stats-pareto-tbl.R ├── stats-pareto1-tbl.R ├── stats-poisson-tbl.R ├── stats-t-tbl.R ├── stats-tidy-stat-func-tbl.R ├── stats-triangular-tbl.R ├── stats-uniform-tbl.R ├── stats-weibull-tbl.R ├── stats-zt-binomial-tbl.R ├── stats-zt-geometric-tbl.R ├── stats-ztn-binomial-tbl.R ├── stats-ztpoisson-tbl.R ├── tidy-random-walk.R ├── tidy_distribution_summary_tbl.R ├── utils-aic-beta.R ├── utils-aic-binomial.R ├── utils-aic-cauchy.R ├── utils-aic-chisq.R ├── utils-aic-exponential.R ├── utils-aic-f.R ├── utils-aic-gamma.R ├── utils-aic-gen-beta.R ├── utils-aic-gen-pareto.R ├── utils-aic-geometric.R ├── utils-aic-hypergeometric.R ├── utils-aic-inv-burr.R ├── utils-aic-inv-pareto.R ├── utils-aic-inv-weibull.R ├── utils-aic-logistic.R ├── utils-aic-lognormal.R ├── utils-aic-negative-binomial.R ├── utils-aic-normal.R ├── utils-aic-paralogistic.R ├── utils-aic-pareto.R ├── utils-aic-poisson.R ├── utils-aic-t.R ├── utils-aic-triangular.R ├── utils-aic-uniform.R ├── utils-aic-weibull.R ├── utils-aic-zt-binom.R ├── utils-aic-zt-geometric.R ├── utils-aic-ztn-binomial.R ├── utils-aic-ztpoisson.R ├── utils-check-dupe-rows.R ├── utils-convert-to-ts.R ├── utils-distribution-comparison.R ├── utils-mcmc-sampling.R ├── utils-pipe.R ├── utils-quantile-normalize.R ├── utils-tidy-eval.R ├── utis-aic-pareto1.R ├── vec-bootstrap-p.R ├── vec-bootstrap-q.R ├── vec-cumulative-functions.R ├── vec-kurtosis.R ├── vec-range.R ├── vec-scale-zero-one.R ├── vec-skewness.R └── zzz.R ├── README.Rmd ├── README.md ├── TidyDensity.Rproj ├── _pkgdown.yml ├── cran-comments.md ├── docs ├── 404.html ├── 404.md ├── CODE_OF_CONDUCT.html ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.html ├── CONTRIBUTING.md ├── LICENSE-text.html ├── LICENSE-text.md ├── LICENSE.html ├── LICENSE.md ├── apple-touch-icon-120x120.png ├── apple-touch-icon-152x152.png ├── apple-touch-icon-180x180.png ├── apple-touch-icon-60x60.png ├── apple-touch-icon-76x76.png ├── apple-touch-icon.png ├── articles │ ├── advanced-features.html │ ├── advanced-features.md │ ├── advanced-features_files │ │ └── figure-html │ │ │ ├── basic-mixture-1.png │ │ │ ├── basic-mixture-2.png │ │ │ ├── bimodal-example-1.png │ │ │ ├── bimodal-example-2.png │ │ │ ├── complex-mixture-1.png │ │ │ ├── complex-mixture-2.png │ │ │ ├── debug-components-1.png │ │ │ ├── dist-combinations-1.png │ │ │ ├── empirical-basic-1.png │ │ │ ├── empirical-bootstrap-1.png │ │ │ ├── empirical-multi-1.png │ │ │ ├── empirical-smooth-1.png │ │ │ ├── empirical-theoretical-1.png │ │ │ ├── four-panel-1.png │ │ │ ├── mixed-family-1.png │ │ │ ├── mixed-family-2.png │ │ │ ├── mixture-add-1.png │ │ │ ├── mixture-add-2.png │ │ │ ├── mixture-divide-1.png │ │ │ ├── mixture-divide-2.png │ │ │ ├── mixture-multiply-1.png │ │ │ ├── mixture-multiply-2.png │ │ │ ├── mixture-subtract-1.png │ │ │ ├── mixture-subtract-2.png │ │ │ ├── multi-dist-different-1.png │ │ │ ├── multi-dist-same-1.png │ │ │ ├── multi-single-dist-1.png │ │ │ ├── qc-example-1.png │ │ │ ├── qc-example-2.png │ │ │ ├── random-walk-plot-1.png │ │ │ ├── triangular-1.png │ │ │ ├── weighted-mixture-1.png │ │ │ └── weighted-mixture-2.png │ ├── bootstrap-analysis.html │ ├── bootstrap-analysis.md │ ├── bootstrap-analysis_files │ │ └── figure-html │ │ │ ├── bootstrap-chmean-plot-1.png │ │ │ ├── bootstrap-cmean-plot-1.png │ │ │ ├── bootstrap-correlation-1.png │ │ │ ├── bootstrap-diff-means-1.png │ │ │ ├── bootstrap-groups-plot-1.png │ │ │ ├── calc-bootstrap-stats-1.png │ │ │ ├── ci-visualization-1.png │ │ │ ├── custom-ci-viz-1.png │ │ │ └── multiple-viz-1.png │ ├── core-concepts.html │ ├── core-concepts.md │ ├── core-concepts_files │ │ └── figure-html │ │ │ ├── continuous-dist-1.png │ │ │ ├── discrete-dist-1.png │ │ │ ├── dist-characteristics-1.png │ │ │ ├── ggplot2-integration-1.png │ │ │ ├── multiple-simulations-1.png │ │ │ ├── visual-comparison-1.png │ │ │ └── viz-ready-1.png │ ├── examples-and-use-cases.html │ ├── examples-and-use-cases.md │ ├── examples-and-use-cases_files │ │ └── figure-html │ │ │ ├── ab-test-1.png │ │ │ ├── central-limit-theorem-1.png │ │ │ ├── control-chart-1.png │ │ │ ├── customer-purchases-1.png │ │ │ ├── disease-outbreak-1.png │ │ │ ├── distribution-change-1.png │ │ │ ├── option-pricing-1.png │ │ │ ├── process-capability-1.png │ │ │ ├── project-planning-1.png │ │ │ └── var-calculation-1.png │ ├── getting-started.html │ ├── getting-started.md │ ├── getting-started_files │ │ └── figure-html │ │ │ ├── more_than_nine_simulations-1.png │ │ │ ├── more_than_nine_simulations-2.png │ │ │ ├── more_than_nine_simulations-3.png │ │ │ ├── more_than_nine_simulations-4.png │ │ │ ├── plot_density-1.png │ │ │ ├── plot_density-2.png │ │ │ ├── plot_density-3.png │ │ │ └── plot_density-4.png │ ├── index.html │ └── index.md ├── authors.html ├── authors.md ├── bootstrap-toc.css ├── bootstrap-toc.js ├── copilot-instructions.html ├── copilot-instructions.md ├── deps │ ├── bootstrap-5.1.3 │ │ ├── bootstrap.bundle.min.js │ │ ├── bootstrap.bundle.min.js.map │ │ ├── bootstrap.min.css │ │ ├── font.css │ │ └── fonts │ │ │ ├── 1Ptxg8zYS_SKggPN4iEgvnHyvveLxVs9pbCIPrc.woff │ │ │ ├── 1Ptxg8zYS_SKggPN4iEgvnHyvveLxVvaorCIPrc.woff │ │ │ ├── 4iCs6KVjbNBYlgo6ew.woff │ │ │ ├── 4iCs6KVjbNBYlgoKfw7w.woff │ │ │ ├── 4iCv6KVjbNBYlgoCxCvTtA.woff │ │ │ ├── 4iCv6KVjbNBYlgoCxCvjsGyL.woff │ │ │ ├── 6xK1dSBYKcSV-LCoeQqfX1RYOo3qPZ7nsDQ.woff │ │ │ ├── 6xK1dSBYKcSV-LCoeQqfX1RYOo3qPa7j.woff │ │ │ ├── 6xK3dSBYKcSV-LCoeQqfX1RYOo3aPA.woff │ │ │ ├── 6xK3dSBYKcSV-LCoeQqfX1RYOo3qOK7j.woff │ │ │ ├── 6xKydSBYKcSV-LCoeQqfX1RYOo3i54rAkw.woff │ │ │ ├── 6xKydSBYKcSV-LCoeQqfX1RYOo3ig4vAkw.woff │ │ │ ├── 6xKydSBYKcSV-LCoeQqfX1RYOo3ig4vwlxdo.woff │ │ │ ├── 6xKydSBYKcSV-LCoeQqfX1RYOo3ik4zAkw.woff │ │ │ ├── 6xKydSBYKcSV-LCoeQqfX1RYOo3ik4zwlxdo.woff │ │ │ ├── CSR54z1Qlv-GDxkbKVQ_dFsvWNRevw.woff │ │ │ ├── CSR54z1Qlv-GDxkbKVQ_dFsvaNA.woff │ │ │ ├── CSR64z1Qlv-GDxkbKVQ_TOQ.woff │ │ │ ├── CSR64z1Qlv-GDxkbKVQ_fOAKSw.woff │ │ │ ├── JTURjIg1_i6t8kCHKm45_ZpC7g0.woff │ │ │ ├── JTURjIg1_i6t8kCHKm45_dJE7g0.woff │ │ │ ├── JTUSjIg1_i6t8kCHKm45xW0.woff │ │ │ ├── KFOlCnqEu92Fr1MmEU9fBBc-.woff │ │ │ ├── KFOlCnqEu92Fr1MmEU9vAA.woff │ │ │ ├── KFOlCnqEu92Fr1MmSU5fBBc-.woff │ │ │ ├── KFOlCnqEu92Fr1MmSU5vAA.woff │ │ │ ├── KFOlCnqEu92Fr1MmWUlfBBc-.woff │ │ │ ├── KFOlCnqEu92Fr1MmWUlvAA.woff │ │ │ ├── KFOmCnqEu92Fr1Me5g.woff │ │ │ ├── KFOmCnqEu92Fr1Mu4mxM.woff │ │ │ ├── QGYpz_kZZAGCONcK2A4bGOj8mNhL.woff │ │ │ ├── S6u8w4BMUTPHjxsAXC-s.woff │ │ │ ├── S6u8w4BMUTPHjxswWA.woff │ │ │ ├── S6u9w4BMUTPHh6UVSwiPHw.woff │ │ │ ├── S6u9w4BMUTPHh6UVeww.woff │ │ │ ├── S6u9w4BMUTPHh7USSwiPHw.woff │ │ │ ├── S6u9w4BMUTPHh7USeww.woff │ │ │ ├── S6uyw4BMUTPHjx4wWA.woff │ │ │ ├── S6uyw4BMUTPHvxo.woff │ │ │ ├── UcCO3FwrK3iLTeHuS_fvQtMwCp50KnMw2boKoduKmMEVuFuYMZs.woff │ │ │ ├── UcCO3FwrK3iLTeHuS_fvQtMwCp50KnMw2boKoduKmMEVuI6fMZs.woff │ │ │ ├── UcCO3FwrK3iLTeHuS_fvQtMwCp50KnMw2boKoduKmMEVuLyfMZs.woff │ │ │ ├── XRXV3I6Li01BKof4MQ.woff │ │ │ ├── XRXW3I6Li01BKofA6sKkZQ.woff │ │ │ ├── XRXW3I6Li01BKofAjsOkZQ.woff │ │ │ ├── memQYaGs126MiZpBA-UFUIcVXSCEkx2cmqvXlWq8tWZ0Pw86hd0Rk5hkWVAexg.woff │ │ │ ├── memQYaGs126MiZpBA-UFUIcVXSCEkx2cmqvXlWq8tWZ0Pw86hd0Rk5hkaVQ.woff │ │ │ ├── memQYaGs126MiZpBA-UFUIcVXSCEkx2cmqvXlWq8tWZ0Pw86hd0Rk8ZkWVAexg.woff │ │ │ ├── memQYaGs126MiZpBA-UFUIcVXSCEkx2cmqvXlWq8tWZ0Pw86hd0Rk8ZkaVQ.woff │ │ │ ├── memQYaGs126MiZpBA-UFUIcVXSCEkx2cmqvXlWq8tWZ0Pw86hd0RkyFjWVAexg.woff │ │ │ ├── memQYaGs126MiZpBA-UFUIcVXSCEkx2cmqvXlWq8tWZ0Pw86hd0RkyFjaVQ.woff │ │ │ ├── memSYaGs126MiZpBA-UvWbX2vVnXBbObj2OVZyOOSr4dVJWUgsg-1x4gaVQ.woff │ │ │ ├── memSYaGs126MiZpBA-UvWbX2vVnXBbObj2OVZyOOSr4dVJWUgsg-1y4k.woff │ │ │ ├── memSYaGs126MiZpBA-UvWbX2vVnXBbObj2OVZyOOSr4dVJWUgsiH0B4gaVQ.woff │ │ │ ├── memSYaGs126MiZpBA-UvWbX2vVnXBbObj2OVZyOOSr4dVJWUgsiH0C4k.woff │ │ │ ├── memSYaGs126MiZpBA-UvWbX2vVnXBbObj2OVZyOOSr4dVJWUgsjZ0B4gaVQ.woff │ │ │ ├── memSYaGs126MiZpBA-UvWbX2vVnXBbObj2OVZyOOSr4dVJWUgsjZ0C4k.woff │ │ │ ├── pe03MImSLYBIv1o4X1M8cc9iB_5p.woff │ │ │ ├── pe0qMImSLYBIv1o4X1M8cfe5.woff │ │ │ └── q5uGsou0JOdh94bfvQlr.woff │ ├── bootstrap-5.2.2 │ │ ├── bootstrap.bundle.min.js │ │ ├── bootstrap.bundle.min.js.map │ │ ├── bootstrap.min.css │ │ ├── font.css │ │ └── fonts │ │ │ ├── 1Ptxg8zYS_SKggPN4iEgvnHyvveLxVs9pbCIPrc.woff │ │ │ ├── 1Ptxg8zYS_SKggPN4iEgvnHyvveLxVvaorCIPrc.woff │ │ │ ├── 1adeadb2fe618c5ed46221f15e12b9c8.woff │ │ │ ├── 4iCs6KVjbNBYlgo6ew.woff │ │ │ ├── 4iCs6KVjbNBYlgoKfw7w.woff │ │ │ ├── 4iCv6KVjbNBYlgoCxCvTtA.woff │ │ │ ├── 4iCv6KVjbNBYlgoCxCvjsGyL.woff │ │ │ ├── 6xK1dSBYKcSV-LCoeQqfX1RYOo3qPZ7nsDQ.woff │ │ │ ├── 6xK1dSBYKcSV-LCoeQqfX1RYOo3qPa7j.woff │ │ │ ├── 6xK3dSBYKcSV-LCoeQqfX1RYOo3aPA.woff │ │ │ ├── 6xK3dSBYKcSV-LCoeQqfX1RYOo3qOK7j.woff │ │ │ ├── 6xKydSBYKcSV-LCoeQqfX1RYOo3i54rAkw.woff │ │ │ ├── 6xKydSBYKcSV-LCoeQqfX1RYOo3ig4vAkw.woff │ │ │ ├── 6xKydSBYKcSV-LCoeQqfX1RYOo3ig4vwlxdo.woff │ │ │ ├── 6xKydSBYKcSV-LCoeQqfX1RYOo3ik4zAkw.woff │ │ │ ├── 6xKydSBYKcSV-LCoeQqfX1RYOo3ik4zwlxdo.woff │ │ │ ├── CSR54z1Qlv-GDxkbKVQ_dFsvWNRevw.woff │ │ │ ├── CSR54z1Qlv-GDxkbKVQ_dFsvaNA.woff │ │ │ ├── CSR64z1Qlv-GDxkbKVQ_TOQ.woff │ │ │ ├── CSR64z1Qlv-GDxkbKVQ_fOAKSw.woff │ │ │ ├── HI_diYsKILxRpg3hIP6sJ7fM7PqPMcMnZFqUwX28DBKXhM0.woff │ │ │ ├── HI_diYsKILxRpg3hIP6sJ7fM7PqPMcMnZFqUwX28DMyQhM0.woff │ │ │ ├── HI_jiYsKILxRpg3hIP6sJ7fM7PqlOPHYvDP_W9O7GQTTbI1rSg.woff │ │ │ ├── HI_jiYsKILxRpg3hIP6sJ7fM7PqlOPHYvDP_W9O7GQTTsoprSg.woff │ │ │ ├── JTUHjIg1_i6t8kCHKm4532VJOt5-QNFgpCtZ6Ew9.woff │ │ │ ├── JTUHjIg1_i6t8kCHKm4532VJOt5-QNFgpCtr6Ew9.woff │ │ │ ├── JTUHjIg1_i6t8kCHKm4532VJOt5-QNFgpCuM70w9.woff │ │ │ ├── KFOlCnqEu92Fr1MmEU9fBBc-.woff │ │ │ ├── KFOlCnqEu92Fr1MmEU9vAA.woff │ │ │ ├── KFOlCnqEu92Fr1MmSU5fBBc-.woff │ │ │ ├── KFOlCnqEu92Fr1MmSU5vAA.woff │ │ │ ├── KFOlCnqEu92Fr1MmWUlfBBc-.woff │ │ │ ├── KFOlCnqEu92Fr1MmWUlvAA.woff │ │ │ ├── KFOmCnqEu92Fr1Me5g.woff │ │ │ ├── KFOmCnqEu92Fr1Mu4mxM.woff │ │ │ ├── QGYpz_kZZAGCONcK2A4bGOj8mNhL.woff │ │ │ ├── S6u8w4BMUTPHjxsAXC-s.woff │ │ │ ├── S6u8w4BMUTPHjxswWA.woff │ │ │ ├── S6u9w4BMUTPHh6UVSwiPHw.woff │ │ │ ├── S6u9w4BMUTPHh6UVeww.woff │ │ │ ├── S6u9w4BMUTPHh7USSwiPHw.woff │ │ │ ├── S6u9w4BMUTPHh7USeww.woff │ │ │ ├── S6uyw4BMUTPHjx4wWA.woff │ │ │ ├── S6uyw4BMUTPHvxo.woff │ │ │ ├── UcCO3FwrK3iLTeHuS_fvQtMwCp50KnMw2boKoduKmMEVuFuYMZs.woff │ │ │ ├── UcCO3FwrK3iLTeHuS_fvQtMwCp50KnMw2boKoduKmMEVuI6fMZs.woff │ │ │ ├── UcCO3FwrK3iLTeHuS_fvQtMwCp50KnMw2boKoduKmMEVuLyfMZs.woff │ │ │ ├── XRXI3I6Li01BKofiOc5wtlZ2di8HDFwmRTA.woff │ │ │ ├── XRXI3I6Li01BKofiOc5wtlZ2di8HDGUmRTA.woff │ │ │ ├── XRXI3I6Li01BKofiOc5wtlZ2di8HDLshRTA.woff │ │ │ ├── a98f7a7574819ba83bec6279a2cecd95.woff │ │ │ ├── memQYaGs126MiZpBA-UFUIcVXSCEkx2cmqvXlWq8tWZ0Pw86hd0Rk0ZjaVQ.woff │ │ │ ├── memQYaGs126MiZpBA-UFUIcVXSCEkx2cmqvXlWq8tWZ0Pw86hd0Rk5hkWVAexg.woff │ │ │ ├── memQYaGs126MiZpBA-UFUIcVXSCEkx2cmqvXlWq8tWZ0Pw86hd0Rk5hkaVQ.woff │ │ │ ├── memQYaGs126MiZpBA-UFUIcVXSCEkx2cmqvXlWq8tWZ0Pw86hd0Rk8ZkWVAexg.woff │ │ │ ├── memQYaGs126MiZpBA-UFUIcVXSCEkx2cmqvXlWq8tWZ0Pw86hd0Rk8ZkaVQ.woff │ │ │ ├── memQYaGs126MiZpBA-UFUIcVXSCEkx2cmqvXlWq8tWZ0Pw86hd0Rk_RkaVQ.woff │ │ │ ├── memQYaGs126MiZpBA-UFUIcVXSCEkx2cmqvXlWq8tWZ0Pw86hd0RkxhjaVQ.woff │ │ │ ├── memQYaGs126MiZpBA-UFUIcVXSCEkx2cmqvXlWq8tWZ0Pw86hd0RkyFjWVAexg.woff │ │ │ ├── memQYaGs126MiZpBA-UFUIcVXSCEkx2cmqvXlWq8tWZ0Pw86hd0RkyFjaVQ.woff │ │ │ ├── memSYaGs126MiZpBA-UvWbX2vVnXBbObj2OVZyOOSr4dVJWUgsg-1x4gaVQ.woff │ │ │ ├── memSYaGs126MiZpBA-UvWbX2vVnXBbObj2OVZyOOSr4dVJWUgsg-1y4k.woff │ │ │ ├── memSYaGs126MiZpBA-UvWbX2vVnXBbObj2OVZyOOSr4dVJWUgsgH1y4k.woff │ │ │ ├── memSYaGs126MiZpBA-UvWbX2vVnXBbObj2OVZyOOSr4dVJWUgshZ1y4k.woff │ │ │ ├── memSYaGs126MiZpBA-UvWbX2vVnXBbObj2OVZyOOSr4dVJWUgsiH0B4gaVQ.woff │ │ │ ├── memSYaGs126MiZpBA-UvWbX2vVnXBbObj2OVZyOOSr4dVJWUgsiH0C4k.woff │ │ │ ├── memSYaGs126MiZpBA-UvWbX2vVnXBbObj2OVZyOOSr4dVJWUgsjZ0B4gaVQ.woff │ │ │ ├── memSYaGs126MiZpBA-UvWbX2vVnXBbObj2OVZyOOSr4dVJWUgsjZ0C4k.woff │ │ │ ├── memSYaGs126MiZpBA-UvWbX2vVnXBbObj2OVZyOOSr4dVJWUgsjr0C4k.woff │ │ │ └── q5uGsou0JOdh94bfvQlr.woff │ ├── bootstrap-5.3.1 │ │ ├── bootstrap.bundle.min.js │ │ ├── bootstrap.bundle.min.js.map │ │ ├── bootstrap.min.css │ │ ├── font.css │ │ └── fonts │ │ │ ├── 07d40e985ad7c747025dabb9f22142c4.woff2 │ │ │ ├── 1Ptug8zYS_SKggPNyC0ITw.woff2 │ │ │ ├── 1Ptug8zYS_SKggPNyCAIT5lu.woff2 │ │ │ ├── 1Ptug8zYS_SKggPNyCIIT5lu.woff2 │ │ │ ├── 1Ptug8zYS_SKggPNyCMIT5lu.woff2 │ │ │ ├── 1Ptug8zYS_SKggPNyCkIT5lu.woff2 │ │ │ ├── 1f5e011d6aae0d98fc0518e1a303e99a.woff2 │ │ │ ├── 4iCs6KVjbNBYlgoKcQ72j00.woff2 │ │ │ ├── 4iCs6KVjbNBYlgoKcg72j00.woff2 │ │ │ ├── 4iCs6KVjbNBYlgoKcw72j00.woff2 │ │ │ ├── 4iCs6KVjbNBYlgoKew72j00.woff2 │ │ │ ├── 4iCs6KVjbNBYlgoKfA72j00.woff2 │ │ │ ├── 4iCs6KVjbNBYlgoKfw72.woff2 │ │ │ ├── 4iCv6KVjbNBYlgoCxCvjs2yNL4U.woff2 │ │ │ ├── 4iCv6KVjbNBYlgoCxCvjsGyN.woff2 │ │ │ ├── 4iCv6KVjbNBYlgoCxCvjtGyNL4U.woff2 │ │ │ ├── 4iCv6KVjbNBYlgoCxCvjvGyNL4U.woff2 │ │ │ ├── 4iCv6KVjbNBYlgoCxCvjvWyNL4U.woff2 │ │ │ ├── 4iCv6KVjbNBYlgoCxCvjvmyNL4U.woff2 │ │ │ ├── 626330658504e338ee86aec8e957426b.woff2 │ │ │ ├── 6xK1dSBYKcSV-LCoeQqfX1RYOo3qPZ7jsDJT9g.woff2 │ │ │ ├── 6xK1dSBYKcSV-LCoeQqfX1RYOo3qPZ7ksDJT9g.woff2 │ │ │ ├── 6xK1dSBYKcSV-LCoeQqfX1RYOo3qPZ7nsDI.woff2 │ │ │ ├── 6xK1dSBYKcSV-LCoeQqfX1RYOo3qPZ7osDJT9g.woff2 │ │ │ ├── 6xK1dSBYKcSV-LCoeQqfX1RYOo3qPZ7psDJT9g.woff2 │ │ │ ├── 6xK1dSBYKcSV-LCoeQqfX1RYOo3qPZ7qsDJT9g.woff2 │ │ │ ├── 6xK1dSBYKcSV-LCoeQqfX1RYOo3qPZ7rsDJT9g.woff2 │ │ │ ├── 6xK3dSBYKcSV-LCoeQqfX1RYOo3qN67lqDY.woff2 │ │ │ ├── 6xK3dSBYKcSV-LCoeQqfX1RYOo3qNK7lqDY.woff2 │ │ │ ├── 6xK3dSBYKcSV-LCoeQqfX1RYOo3qNa7lqDY.woff2 │ │ │ ├── 6xK3dSBYKcSV-LCoeQqfX1RYOo3qNq7lqDY.woff2 │ │ │ ├── 6xK3dSBYKcSV-LCoeQqfX1RYOo3qO67lqDY.woff2 │ │ │ ├── 6xK3dSBYKcSV-LCoeQqfX1RYOo3qOK7l.woff2 │ │ │ ├── 6xK3dSBYKcSV-LCoeQqfX1RYOo3qPK7lqDY.woff2 │ │ │ ├── 6xKydSBYKcSV-LCoeQqfX1RYOo3i54rwkxduz8A.woff2 │ │ │ ├── 6xKydSBYKcSV-LCoeQqfX1RYOo3i54rwlBduz8A.woff2 │ │ │ ├── 6xKydSBYKcSV-LCoeQqfX1RYOo3i54rwlxdu.woff2 │ │ │ ├── 6xKydSBYKcSV-LCoeQqfX1RYOo3i54rwmBduz8A.woff2 │ │ │ ├── 6xKydSBYKcSV-LCoeQqfX1RYOo3i54rwmRduz8A.woff2 │ │ │ ├── 6xKydSBYKcSV-LCoeQqfX1RYOo3i54rwmhduz8A.woff2 │ │ │ ├── 6xKydSBYKcSV-LCoeQqfX1RYOo3i54rwmxduz8A.woff2 │ │ │ ├── 6xKydSBYKcSV-LCoeQqfX1RYOo3ig4vwkxduz8A.woff2 │ │ │ ├── 6xKydSBYKcSV-LCoeQqfX1RYOo3ig4vwlBduz8A.woff2 │ │ │ ├── 6xKydSBYKcSV-LCoeQqfX1RYOo3ig4vwlxdu.woff2 │ │ │ ├── 6xKydSBYKcSV-LCoeQqfX1RYOo3ig4vwmBduz8A.woff2 │ │ │ ├── 6xKydSBYKcSV-LCoeQqfX1RYOo3ig4vwmRduz8A.woff2 │ │ │ ├── 6xKydSBYKcSV-LCoeQqfX1RYOo3ig4vwmhduz8A.woff2 │ │ │ ├── 6xKydSBYKcSV-LCoeQqfX1RYOo3ig4vwmxduz8A.woff2 │ │ │ ├── 6xKydSBYKcSV-LCoeQqfX1RYOo3ik4zwkxduz8A.woff2 │ │ │ ├── 6xKydSBYKcSV-LCoeQqfX1RYOo3ik4zwlBduz8A.woff2 │ │ │ ├── 6xKydSBYKcSV-LCoeQqfX1RYOo3ik4zwlxdu.woff2 │ │ │ ├── 6xKydSBYKcSV-LCoeQqfX1RYOo3ik4zwmBduz8A.woff2 │ │ │ ├── 6xKydSBYKcSV-LCoeQqfX1RYOo3ik4zwmRduz8A.woff2 │ │ │ ├── 6xKydSBYKcSV-LCoeQqfX1RYOo3ik4zwmhduz8A.woff2 │ │ │ ├── 6xKydSBYKcSV-LCoeQqfX1RYOo3ik4zwmxduz8A.woff2 │ │ │ ├── CSR54z1Qlv-GDxkbKVQ_dFsvWNReuQ.woff2 │ │ │ ├── CSR54z1Qlv-GDxkbKVQ_dFsvWNpeudwk.woff2 │ │ │ ├── CSR64z1Qlv-GDxkbKVQ_fO4KTet_.woff2 │ │ │ ├── CSR64z1Qlv-GDxkbKVQ_fOAKTQ.woff2 │ │ │ ├── HI_QiYsKILxRpg3hIP6sJ7fM7PqlONvQlMIXxw.woff2 │ │ │ ├── HI_QiYsKILxRpg3hIP6sJ7fM7PqlONvUlMI.woff2 │ │ │ ├── HI_QiYsKILxRpg3hIP6sJ7fM7PqlONvXlMIXxw.woff2 │ │ │ ├── HI_QiYsKILxRpg3hIP6sJ7fM7PqlONvYlMIXxw.woff2 │ │ │ ├── HI_QiYsKILxRpg3hIP6sJ7fM7PqlONvZlMIXxw.woff2 │ │ │ ├── HI_QiYsKILxRpg3hIP6sJ7fM7PqlONvalMIXxw.woff2 │ │ │ ├── HI_QiYsKILxRpg3hIP6sJ7fM7PqlONvblMIXxw.woff2 │ │ │ ├── HI_SiYsKILxRpg3hIP6sJ7fM7PqlM-vWjMY.woff2 │ │ │ ├── HI_SiYsKILxRpg3hIP6sJ7fM7PqlMOvWjMY.woff2 │ │ │ ├── HI_SiYsKILxRpg3hIP6sJ7fM7PqlMevWjMY.woff2 │ │ │ ├── HI_SiYsKILxRpg3hIP6sJ7fM7PqlMuvWjMY.woff2 │ │ │ ├── HI_SiYsKILxRpg3hIP6sJ7fM7PqlOevWjMY.woff2 │ │ │ ├── HI_SiYsKILxRpg3hIP6sJ7fM7PqlPevW.woff2 │ │ │ ├── HI_SiYsKILxRpg3hIP6sJ7fM7PqlPuvWjMY.woff2 │ │ │ ├── JTUSjIg1_i6t8kCHKm459W1hyzbi.woff2 │ │ │ ├── JTUSjIg1_i6t8kCHKm459WRhyzbi.woff2 │ │ │ ├── JTUSjIg1_i6t8kCHKm459WZhyzbi.woff2 │ │ │ ├── JTUSjIg1_i6t8kCHKm459Wdhyzbi.woff2 │ │ │ ├── JTUSjIg1_i6t8kCHKm459Wlhyw.woff2 │ │ │ ├── QGYpz_kZZAGCONcK2A4bGOj8mNhN.woff2 │ │ │ ├── S6u8w4BMUTPHjxsAUi-qJCY.woff2 │ │ │ ├── S6u8w4BMUTPHjxsAXC-q.woff2 │ │ │ ├── S6u9w4BMUTPHh6UVSwaPGR_p.woff2 │ │ │ ├── S6u9w4BMUTPHh6UVSwiPGQ.woff2 │ │ │ ├── S6u9w4BMUTPHh7USSwaPGR_p.woff2 │ │ │ ├── S6u9w4BMUTPHh7USSwiPGQ.woff2 │ │ │ ├── S6uyw4BMUTPHjx4wXg.woff2 │ │ │ ├── S6uyw4BMUTPHjxAwXjeu.woff2 │ │ │ ├── XRXV3I6Li01BKofIMeaBXso.woff2 │ │ │ ├── XRXV3I6Li01BKofINeaB.woff2 │ │ │ ├── XRXV3I6Li01BKofIO-aBXso.woff2 │ │ │ ├── XRXV3I6Li01BKofIOOaBXso.woff2 │ │ │ ├── XRXV3I6Li01BKofIOuaBXso.woff2 │ │ │ ├── c2f002b3a87d3f9bfeebb23d32cfd9f8.woff2 │ │ │ ├── ee91700cdbf7ce16c054c2bb8946c736.woff2 │ │ │ ├── memtYaGs126MiZpBA-UFUIcVXSCEkx2cmqvXlWqW106F15M.woff2 │ │ │ ├── memtYaGs126MiZpBA-UFUIcVXSCEkx2cmqvXlWqWt06F15M.woff2 │ │ │ ├── memtYaGs126MiZpBA-UFUIcVXSCEkx2cmqvXlWqWtE6F15M.woff2 │ │ │ ├── memtYaGs126MiZpBA-UFUIcVXSCEkx2cmqvXlWqWtU6F15M.woff2 │ │ │ ├── memtYaGs126MiZpBA-UFUIcVXSCEkx2cmqvXlWqWtk6F15M.woff2 │ │ │ ├── memtYaGs126MiZpBA-UFUIcVXSCEkx2cmqvXlWqWu06F15M.woff2 │ │ │ ├── memtYaGs126MiZpBA-UFUIcVXSCEkx2cmqvXlWqWuU6F.woff2 │ │ │ ├── memtYaGs126MiZpBA-UFUIcVXSCEkx2cmqvXlWqWuk6F15M.woff2 │ │ │ ├── memtYaGs126MiZpBA-UFUIcVXSCEkx2cmqvXlWqWvU6F15M.woff2 │ │ │ ├── memtYaGs126MiZpBA-UFUIcVXSCEkx2cmqvXlWqWxU6F15M.woff2 │ │ │ ├── memvYaGs126MiZpBA-UvWbX2vVnXBbObj2OVTS-muw.woff2 │ │ │ ├── memvYaGs126MiZpBA-UvWbX2vVnXBbObj2OVTS2mu1aB.woff2 │ │ │ ├── memvYaGs126MiZpBA-UvWbX2vVnXBbObj2OVTSCmu1aB.woff2 │ │ │ ├── memvYaGs126MiZpBA-UvWbX2vVnXBbObj2OVTSGmu1aB.woff2 │ │ │ ├── memvYaGs126MiZpBA-UvWbX2vVnXBbObj2OVTSKmu1aB.woff2 │ │ │ ├── memvYaGs126MiZpBA-UvWbX2vVnXBbObj2OVTSOmu1aB.woff2 │ │ │ ├── memvYaGs126MiZpBA-UvWbX2vVnXBbObj2OVTSumu1aB.woff2 │ │ │ ├── memvYaGs126MiZpBA-UvWbX2vVnXBbObj2OVTSymu1aB.woff2 │ │ │ ├── memvYaGs126MiZpBA-UvWbX2vVnXBbObj2OVTUGmu1aB.woff2 │ │ │ ├── memvYaGs126MiZpBA-UvWbX2vVnXBbObj2OVTVOmu1aB.woff2 │ │ │ ├── q5uGsou0JOdh94bfuQltOxU.woff2 │ │ │ └── q5uGsou0JOdh94bfvQlt.woff2 │ ├── bootstrap-toc-1.0.1 │ │ └── bootstrap-toc.min.js │ ├── clipboard.js-2.0.11 │ │ └── clipboard.min.js │ ├── data-deps.txt │ ├── font-awesome-6.5.2 │ │ ├── css │ │ │ ├── all.css │ │ │ ├── all.min.css │ │ │ ├── v4-shims.css │ │ │ └── v4-shims.min.css │ │ └── webfonts │ │ │ ├── fa-brands-400.ttf │ │ │ ├── fa-brands-400.woff2 │ │ │ ├── fa-regular-400.ttf │ │ │ ├── fa-regular-400.woff2 │ │ │ ├── fa-solid-900.ttf │ │ │ ├── fa-solid-900.woff2 │ │ │ ├── fa-v4compatibility.ttf │ │ │ └── fa-v4compatibility.woff2 │ ├── headroom-0.11.0 │ │ ├── headroom.min.js │ │ └── jQuery.headroom.min.js │ ├── jquery-3.6.0 │ │ ├── jquery-3.6.0.js │ │ ├── jquery-3.6.0.min.js │ │ └── jquery-3.6.0.min.map │ └── search-1.0.0 │ │ ├── autocomplete.jquery.min.js │ │ ├── fuse.min.js │ │ └── mark.min.js ├── docsearch.css ├── docsearch.js ├── favicon-16x16.png ├── favicon-32x32.png ├── favicon.ico ├── index.html ├── index.md ├── katex-auto.js ├── lightswitch.js ├── link.svg ├── llms.txt ├── logo.png ├── news │ ├── index.html │ └── index.md ├── pkgdown.css ├── pkgdown.js ├── pkgdown.yml ├── reference │ ├── .data.html │ ├── Rplot001.png │ ├── Rplot002.png │ ├── as_label.html │ ├── as_name.html │ ├── bootstrap_density_augment.html │ ├── bootstrap_density_augment.md │ ├── bootstrap_p_augment.html │ ├── bootstrap_p_augment.md │ ├── bootstrap_p_vec.html │ ├── bootstrap_p_vec.md │ ├── bootstrap_q_augment.html │ ├── bootstrap_q_augment.md │ ├── bootstrap_q_vec.html │ ├── bootstrap_q_vec.md │ ├── bootstrap_stat_plot-1.png │ ├── bootstrap_stat_plot-2.png │ ├── bootstrap_stat_plot.html │ ├── bootstrap_stat_plot.md │ ├── bootstrap_unnest_tbl.html │ ├── bootstrap_unnest_tbl.md │ ├── cgmean.html │ ├── cgmean.md │ ├── check_duplicate_rows.html │ ├── check_duplicate_rows.md │ ├── chmean.html │ ├── chmean.md │ ├── ci_hi.html │ ├── ci_hi.md │ ├── ci_lo.html │ ├── ci_lo.md │ ├── ckurtosis.html │ ├── ckurtosis.md │ ├── cmean.html │ ├── cmean.md │ ├── cmedian.html │ ├── cmedian.md │ ├── color_blind.html │ ├── color_blind.md │ ├── convert_to_ts.html │ ├── convert_to_ts.md │ ├── csd.html │ ├── csd.md │ ├── cskewness.html │ ├── cskewness.md │ ├── cvar.html │ ├── cvar.md │ ├── dist_type_extractor.html │ ├── dist_type_extractor.md │ ├── enquo.html │ ├── enquos.html │ ├── figures │ │ ├── README-more_than_nine_simulations-1.png │ │ ├── README-more_than_nine_simulations-2.png │ │ ├── README-more_than_nine_simulations-3.png │ │ ├── README-more_than_nine_simulations-4.png │ │ ├── README-plot_density-1.png │ │ ├── README-plot_density-2.png │ │ ├── README-plot_density-3.png │ │ ├── README-plot_density-4.png │ │ ├── README-pressure-1.png │ │ ├── logo.png │ │ └── tidy_density_logo.png │ ├── index.html │ ├── index.md │ ├── pipe.html │ ├── pipe.md │ ├── quantile_normalize.html │ ├── quantile_normalize.md │ ├── td_scale_color_colorblind.html │ ├── td_scale_color_colorblind.md │ ├── td_scale_fill_colorblind.html │ ├── td_scale_fill_colorblind.md │ ├── tidy_autoplot-1.png │ ├── tidy_autoplot-2.png │ ├── tidy_autoplot.html │ ├── tidy_autoplot.md │ ├── tidy_bernoulli.html │ ├── tidy_bernoulli.md │ ├── tidy_beta.html │ ├── tidy_beta.md │ ├── tidy_binomial.html │ ├── tidy_binomial.md │ ├── tidy_bootstrap.html │ ├── tidy_bootstrap.md │ ├── tidy_burr.html │ ├── tidy_burr.md │ ├── tidy_cauchy.html │ ├── tidy_cauchy.md │ ├── tidy_chisquare.html │ ├── tidy_chisquare.md │ ├── tidy_combine_distributions.html │ ├── tidy_combine_distributions.md │ ├── tidy_combined_autoplot-1.png │ ├── tidy_combined_autoplot-2.png │ ├── tidy_combined_autoplot.html │ ├── tidy_combined_autoplot.md │ ├── tidy_distribution_comparison.html │ ├── tidy_distribution_comparison.md │ ├── tidy_distribution_summary_tbl.html │ ├── tidy_distribution_summary_tbl.md │ ├── tidy_empirical.html │ ├── tidy_empirical.md │ ├── tidy_exponential.html │ ├── tidy_exponential.md │ ├── tidy_f.html │ ├── tidy_f.md │ ├── tidy_four_autoplot-1.png │ ├── tidy_four_autoplot.html │ ├── tidy_four_autoplot.md │ ├── tidy_gamma.html │ ├── tidy_gamma.md │ ├── tidy_generalized_beta.html │ ├── tidy_generalized_beta.md │ ├── tidy_generalized_pareto.html │ ├── tidy_generalized_pareto.md │ ├── tidy_geometric.html │ ├── tidy_geometric.md │ ├── tidy_hypergeometric.html │ ├── tidy_hypergeometric.md │ ├── tidy_inverse_burr.html │ ├── tidy_inverse_burr.md │ ├── tidy_inverse_exponential.html │ ├── tidy_inverse_exponential.md │ ├── tidy_inverse_gamma.html │ ├── tidy_inverse_gamma.md │ ├── tidy_inverse_normal.html │ ├── tidy_inverse_normal.md │ ├── tidy_inverse_pareto.html │ ├── tidy_inverse_pareto.md │ ├── tidy_inverse_weibull.html │ ├── tidy_inverse_weibull.md │ ├── tidy_kurtosis_vec.html │ ├── tidy_kurtosis_vec.md │ ├── tidy_logisitc.html │ ├── tidy_logistic.html │ ├── tidy_logistic.md │ ├── tidy_lognormal.html │ ├── tidy_lognormal.md │ ├── tidy_mcmc_sampling-1.png │ ├── tidy_mcmc_sampling.html │ ├── tidy_mcmc_sampling.md │ ├── tidy_mixture_density-1.png │ ├── tidy_mixture_density-2.png │ ├── tidy_mixture_density.html │ ├── tidy_mixture_density.md │ ├── tidy_multi_dist.html │ ├── tidy_multi_dist_autoplot-1.png │ ├── tidy_multi_dist_autoplot-2.png │ ├── tidy_multi_dist_autoplot.html │ ├── tidy_multi_dist_autoplot.md │ ├── tidy_multi_single_dist.html │ ├── tidy_multi_single_dist.md │ ├── tidy_negative_binomial.html │ ├── tidy_negative_binomial.md │ ├── tidy_normal.html │ ├── tidy_normal.md │ ├── tidy_paralogistic.html │ ├── tidy_paralogistic.md │ ├── tidy_pareto.html │ ├── tidy_pareto.md │ ├── tidy_pareto1.html │ ├── tidy_pareto1.md │ ├── tidy_poisson.html │ ├── tidy_poisson.md │ ├── tidy_random_walk.html │ ├── tidy_random_walk.md │ ├── tidy_random_walk_autoplot-1.png │ ├── tidy_random_walk_autoplot-2.png │ ├── tidy_random_walk_autoplot.html │ ├── tidy_random_walk_autoplot.md │ ├── tidy_range_statistic.html │ ├── tidy_range_statistic.md │ ├── tidy_rnorm.html │ ├── tidy_scale_zero_one_vec-1.png │ ├── tidy_scale_zero_one_vec.html │ ├── tidy_scale_zero_one_vec.md │ ├── tidy_skewness_vec.html │ ├── tidy_skewness_vec.md │ ├── tidy_stat_tbl.html │ ├── tidy_stat_tbl.md │ ├── tidy_t.html │ ├── tidy_t.md │ ├── tidy_triangular.html │ ├── tidy_triangular.md │ ├── tidy_uniform.html │ ├── tidy_uniform.md │ ├── tidy_weibull.html │ ├── tidy_weibull.md │ ├── tidy_zero_truncated_binomial.html │ ├── tidy_zero_truncated_binomial.md │ ├── tidy_zero_truncated_geometric.html │ ├── tidy_zero_truncated_geometric.md │ ├── tidy_zero_truncated_negative_binomial.html │ ├── tidy_zero_truncated_negative_binomial.md │ ├── tidy_zero_truncated_poisson.html │ ├── tidy_zero_truncated_poisson.md │ ├── tidyeval.html │ ├── tidyeval.md │ ├── triangle_plot-1.png │ ├── triangle_plot.html │ ├── triangle_plot.md │ ├── util_bernoulli_param_estimate-1.png │ ├── util_bernoulli_param_estimate.html │ ├── util_bernoulli_param_estimate.md │ ├── util_bernoulli_stats_tbl.html │ ├── util_bernoulli_stats_tbl.md │ ├── util_beta_aic.html │ ├── util_beta_aic.md │ ├── util_beta_param_estimate-1.png │ ├── util_beta_param_estimate.html │ ├── util_beta_param_estimate.md │ ├── util_beta_stats_tbl.html │ ├── util_beta_stats_tbl.md │ ├── util_binomial_aic.html │ ├── util_binomial_aic.md │ ├── util_binomial_param_estimate-1.png │ ├── util_binomial_param_estimate.html │ ├── util_binomial_param_estimate.md │ ├── util_binomial_stats_tbl.html │ ├── util_binomial_stats_tbl.md │ ├── util_burr_param_estimate-1.png │ ├── util_burr_param_estimate.html │ ├── util_burr_param_estimate.md │ ├── util_burr_stats_tbl.html │ ├── util_burr_stats_tbl.md │ ├── util_cauchy_aic.html │ ├── util_cauchy_aic.md │ ├── util_cauchy_param_estimate-1.png │ ├── util_cauchy_param_estimate.html │ ├── util_cauchy_param_estimate.md │ ├── util_cauchy_stats_tbl.html │ ├── util_cauchy_stats_tbl.md │ ├── util_chisq_aic.html │ ├── util_chisq_aic.md │ ├── util_chisquare_param_estimate-1.png │ ├── util_chisquare_param_estimate.html │ ├── util_chisquare_param_estimate.md │ ├── util_chisquare_stats_tbl.html │ ├── util_chisquare_stats_tbl.md │ ├── util_exponential_aic.html │ ├── util_exponential_aic.md │ ├── util_exponential_param_estimate-1.png │ ├── util_exponential_param_estimate.html │ ├── util_exponential_param_estimate.md │ ├── util_exponential_stats_tbl.html │ ├── util_exponential_stats_tbl.md │ ├── util_f_aic.html │ ├── util_f_aic.md │ ├── util_f_param_estimate-1.png │ ├── util_f_param_estimate.html │ ├── util_f_param_estimate.md │ ├── util_f_stats_tbl.html │ ├── util_f_stats_tbl.md │ ├── util_gamma_aic.html │ ├── util_gamma_aic.md │ ├── util_gamma_param_estimate-1.png │ ├── util_gamma_param_estimate.html │ ├── util_gamma_param_estimate.md │ ├── util_gamma_stats_tbl.html │ ├── util_gamma_stats_tbl.md │ ├── util_generalized_beta_aic.html │ ├── util_generalized_beta_aic.md │ ├── util_generalized_beta_param_estimate-1.png │ ├── util_generalized_beta_param_estimate.html │ ├── util_generalized_beta_param_estimate.md │ ├── util_generalized_beta_stats_tbl.html │ ├── util_generalized_beta_stats_tbl.md │ ├── util_generalized_pareto_aic.html │ ├── util_generalized_pareto_aic.md │ ├── util_generalized_pareto_param_estimate-1.png │ ├── util_generalized_pareto_param_estimate.html │ ├── util_generalized_pareto_param_estimate.md │ ├── util_generalized_pareto_stats_tbl.html │ ├── util_generalized_pareto_stats_tbl.md │ ├── util_geometric_aic.html │ ├── util_geometric_aic.md │ ├── util_geometric_param_estimate-1.png │ ├── util_geometric_param_estimate.html │ ├── util_geometric_param_estimate.md │ ├── util_geometric_stats_tbl.html │ ├── util_geometric_stats_tbl.md │ ├── util_hypergeometric_aic.html │ ├── util_hypergeometric_aic.md │ ├── util_hypergeometric_param_estimate-1.png │ ├── util_hypergeometric_param_estimate.html │ ├── util_hypergeometric_param_estimate.md │ ├── util_hypergeometric_stats_tbl.html │ ├── util_hypergeometric_stats_tbl.md │ ├── util_inverse_burr_aic.html │ ├── util_inverse_burr_aic.md │ ├── util_inverse_burr_param_estimate-1.png │ ├── util_inverse_burr_param_estimate.html │ ├── util_inverse_burr_param_estimate.md │ ├── util_inverse_burr_stats_tbl.html │ ├── util_inverse_burr_stats_tbl.md │ ├── util_inverse_pareto_aic.html │ ├── util_inverse_pareto_aic.md │ ├── util_inverse_pareto_param_estimate-1.png │ ├── util_inverse_pareto_param_estimate.html │ ├── util_inverse_pareto_param_estimate.md │ ├── util_inverse_pareto_stats_tbl.html │ ├── util_inverse_pareto_stats_tbl.md │ ├── util_inverse_weibull_aic.html │ ├── util_inverse_weibull_aic.md │ ├── util_inverse_weibull_param_estimate-1.png │ ├── util_inverse_weibull_param_estimate.html │ ├── util_inverse_weibull_param_estimate.md │ ├── util_inverse_weibull_stats_tbl.html │ ├── util_inverse_weibull_stats_tbl.md │ ├── util_invweibull_param_estimate-1.png │ ├── util_invweibull_param_estimate.html │ ├── util_invweibull_param_estimate.md │ ├── util_logistic_aic.html │ ├── util_logistic_aic.md │ ├── util_logistic_param_estimate-1.png │ ├── util_logistic_param_estimate.html │ ├── util_logistic_param_estimate.md │ ├── util_logistic_stats_tbl.html │ ├── util_logistic_stats_tbl.md │ ├── util_lognormal_aic.html │ ├── util_lognormal_aic.md │ ├── util_lognormal_param_estimate-1.png │ ├── util_lognormal_param_estimate.html │ ├── util_lognormal_param_estimate.md │ ├── util_lognormal_stats_tbl.html │ ├── util_lognormal_stats_tbl.md │ ├── util_negative_binomial_aic.html │ ├── util_negative_binomial_aic.md │ ├── util_negative_binomial_param_estimate-1.png │ ├── util_negative_binomial_param_estimate.html │ ├── util_negative_binomial_param_estimate.md │ ├── util_negative_binomial_stats_tbl.html │ ├── util_negative_binomial_stats_tbl.md │ ├── util_normal_aic.html │ ├── util_normal_aic.md │ ├── util_normal_param_estimate-1.png │ ├── util_normal_param_estimate.html │ ├── util_normal_param_estimate.md │ ├── util_normal_stats_tbl.html │ ├── util_normal_stats_tbl.md │ ├── util_paralogistic_aic.html │ ├── util_paralogistic_aic.md │ ├── util_paralogistic_param_estimate-1.png │ ├── util_paralogistic_param_estimate.html │ ├── util_paralogistic_param_estimate.md │ ├── util_paralogistic_stats_tbl.html │ ├── util_paralogistic_stats_tbl.md │ ├── util_pareto1_aic.html │ ├── util_pareto1_aic.md │ ├── util_pareto1_param_estimate-1.png │ ├── util_pareto1_param_estimate.html │ ├── util_pareto1_param_estimate.md │ ├── util_pareto1_stats_tbl.html │ ├── util_pareto1_stats_tbl.md │ ├── util_pareto_aic.html │ ├── util_pareto_aic.md │ ├── util_pareto_estimate-1.png │ ├── util_pareto_estimate.html │ ├── util_pareto_param_estimate-1.png │ ├── util_pareto_param_estimate.html │ ├── util_pareto_param_estimate.md │ ├── util_pareto_stats_tbl.html │ ├── util_pareto_stats_tbl.md │ ├── util_poisson_aic.html │ ├── util_poisson_aic.md │ ├── util_poisson_param_estimate-1.png │ ├── util_poisson_param_estimate.html │ ├── util_poisson_param_estimate.md │ ├── util_poisson_stats_tbl.html │ ├── util_poisson_stats_tbl.md │ ├── util_rztnbinom_aic.html │ ├── util_rztnbinom_aic.md │ ├── util_t_aic.html │ ├── util_t_aic.md │ ├── util_t_param_estimate-1.png │ ├── util_t_param_estimate.html │ ├── util_t_param_estimate.md │ ├── util_t_stats_tbl.html │ ├── util_t_stats_tbl.md │ ├── util_triangular_aic.html │ ├── util_triangular_aic.md │ ├── util_triangular_param_estimate-1.png │ ├── util_triangular_param_estimate.html │ ├── util_triangular_param_estimate.md │ ├── util_triangular_stats_tbl.html │ ├── util_triangular_stats_tbl.md │ ├── util_uniform_aic.html │ ├── util_uniform_aic.md │ ├── util_uniform_param_estimate-1.png │ ├── util_uniform_param_estimate.html │ ├── util_uniform_param_estimate.md │ ├── util_uniform_stats_tbl.html │ ├── util_uniform_stats_tbl.md │ ├── util_weibull_aic.html │ ├── util_weibull_aic.md │ ├── util_weibull_param_estimate-1.png │ ├── util_weibull_param_estimate.html │ ├── util_weibull_param_estimate.md │ ├── util_weibull_stats_tbl.html │ ├── util_weibull_stats_tbl.md │ ├── util_zero_truncaetd_negative_binomial_stats_tbl.html │ ├── util_zero_truncaetd_negative_binomial_stats_tbl.md │ ├── util_zero_truncated_binomial_aic.html │ ├── util_zero_truncated_binomial_aic.md │ ├── util_zero_truncated_binomial_param_estimate-1.png │ ├── util_zero_truncated_binomial_param_estimate.html │ ├── util_zero_truncated_binomial_param_estimate.md │ ├── util_zero_truncated_binomial_stats_tbl.html │ ├── util_zero_truncated_binomial_stats_tbl.md │ ├── util_zero_truncated_geometric_aic.html │ ├── util_zero_truncated_geometric_aic.md │ ├── util_zero_truncated_geometric_param_estimate-1.png │ ├── util_zero_truncated_geometric_param_estimate.html │ ├── util_zero_truncated_geometric_param_estimate.md │ ├── util_zero_truncated_geometric_stats_tbl.html │ ├── util_zero_truncated_geometric_stats_tbl.md │ ├── util_zero_truncated_negative_binomial_aic.html │ ├── util_zero_truncated_negative_binomial_aic.md │ ├── util_zero_truncated_negative_binomial_param_estimate-1.png │ ├── util_zero_truncated_negative_binomial_param_estimate.html │ ├── util_zero_truncated_negative_binomial_param_estimate.md │ ├── util_zero_truncated_negative_binomial_stats_tbl.html │ ├── util_zero_truncated_negative_binomial_stats_tbl.md │ ├── util_zero_truncated_poisson_aic.html │ ├── util_zero_truncated_poisson_aic.md │ ├── util_zero_truncated_poisson_param_estimate-1.png │ ├── util_zero_truncated_poisson_param_estimate.html │ ├── util_zero_truncated_poisson_param_estimate.md │ ├── util_zero_truncated_poisson_stats_tbl.html │ ├── util_zero_truncated_poisson_stats_tbl.md │ ├── util_ztn_binomial_param_estimate-1.png │ ├── util_ztn_binomial_param_estimate.html │ └── util_ztn_binomial_param_estimate.md ├── search.json └── sitemap.xml ├── man ├── bootstrap_density_augment.Rd ├── bootstrap_p_augment.Rd ├── bootstrap_p_vec.Rd ├── bootstrap_q_augment.Rd ├── bootstrap_q_vec.Rd ├── bootstrap_stat_plot.Rd ├── bootstrap_unnest_tbl.Rd ├── cgmean.Rd ├── check_duplicate_rows.Rd ├── chmean.Rd ├── ci_hi.Rd ├── ci_lo.Rd ├── ckurtosis.Rd ├── cmean.Rd ├── cmedian.Rd ├── color_blind.Rd ├── convert_to_ts.Rd ├── csd.Rd ├── cskewness.Rd ├── cvar.Rd ├── dist_type_extractor.Rd ├── figures │ ├── README-more_than_nine_simulations-1.png │ ├── README-more_than_nine_simulations-2.png │ ├── README-more_than_nine_simulations-3.png │ ├── README-more_than_nine_simulations-4.png │ ├── README-plot_density-1.png │ ├── README-plot_density-2.png │ ├── README-plot_density-3.png │ ├── README-plot_density-4.png │ └── logo.png ├── pipe.Rd ├── quantile_normalize.Rd ├── td_scale_color_colorblind.Rd ├── td_scale_fill_colorblind.Rd ├── tidy_autoplot.Rd ├── tidy_bernoulli.Rd ├── tidy_beta.Rd ├── tidy_binomial.Rd ├── tidy_bootstrap.Rd ├── tidy_burr.Rd ├── tidy_cauchy.Rd ├── tidy_chisquare.Rd ├── tidy_combine_distributions.Rd ├── tidy_combined_autoplot.Rd ├── tidy_distribution_comparison.Rd ├── tidy_distribution_summary_tbl.Rd ├── tidy_empirical.Rd ├── tidy_exponential.Rd ├── tidy_f.Rd ├── tidy_four_autoplot.Rd ├── tidy_gamma.Rd ├── tidy_generalized_beta.Rd ├── tidy_generalized_pareto.Rd ├── tidy_geometric.Rd ├── tidy_hypergeometric.Rd ├── tidy_inverse_burr.Rd ├── tidy_inverse_exponential.Rd ├── tidy_inverse_gamma.Rd ├── tidy_inverse_normal.Rd ├── tidy_inverse_pareto.Rd ├── tidy_inverse_weibull.Rd ├── tidy_kurtosis_vec.Rd ├── tidy_logistic.Rd ├── tidy_lognormal.Rd ├── tidy_mcmc_sampling.Rd ├── tidy_mixture_density.Rd ├── tidy_multi_dist_autoplot.Rd ├── tidy_multi_single_dist.Rd ├── tidy_negative_binomial.Rd ├── tidy_normal.Rd ├── tidy_paralogistic.Rd ├── tidy_pareto.Rd ├── tidy_pareto1.Rd ├── tidy_poisson.Rd ├── tidy_random_walk.Rd ├── tidy_random_walk_autoplot.Rd ├── tidy_range_statistic.Rd ├── tidy_scale_zero_one_vec.Rd ├── tidy_skewness_vec.Rd ├── tidy_stat_tbl.Rd ├── tidy_t.Rd ├── tidy_triangular.Rd ├── tidy_uniform.Rd ├── tidy_weibull.Rd ├── tidy_zero_truncated_binomial.Rd ├── tidy_zero_truncated_geometric.Rd ├── tidy_zero_truncated_negative_binomial.Rd ├── tidy_zero_truncated_poisson.Rd ├── tidyeval.Rd ├── triangle_plot.Rd ├── util_bernoulli_param_estimate.Rd ├── util_bernoulli_stats_tbl.Rd ├── util_beta_aic.Rd ├── util_beta_param_estimate.Rd ├── util_beta_stats_tbl.Rd ├── util_binomial_aic.Rd ├── util_binomial_param_estimate.Rd ├── util_binomial_stats_tbl.Rd ├── util_burr_param_estimate.Rd ├── util_burr_stats_tbl.Rd ├── util_cauchy_aic.Rd ├── util_cauchy_param_estimate.Rd ├── util_cauchy_stats_tbl.Rd ├── util_chisq_aic.Rd ├── util_chisquare_param_estimate.Rd ├── util_chisquare_stats_tbl.Rd ├── util_exponential_aic.Rd ├── util_exponential_param_estimate.Rd ├── util_exponential_stats_tbl.Rd ├── util_f_aic.Rd ├── util_f_param_estimate.Rd ├── util_f_stats_tbl.Rd ├── util_gamma_aic.Rd ├── util_gamma_param_estimate.Rd ├── util_gamma_stats_tbl.Rd ├── util_generalized_beta_aic.Rd ├── util_generalized_beta_param_estimate.Rd ├── util_generalized_beta_stats_tbl.Rd ├── util_generalized_pareto_aic.Rd ├── util_generalized_pareto_param_estimate.Rd ├── util_generalized_pareto_stats_tbl.Rd ├── util_geometric_aic.Rd ├── util_geometric_param_estimate.Rd ├── util_geometric_stats_tbl.Rd ├── util_hypergeometric_aic.Rd ├── util_hypergeometric_param_estimate.Rd ├── util_hypergeometric_stats_tbl.Rd ├── util_inverse_burr_aic.Rd ├── util_inverse_burr_param_estimate.Rd ├── util_inverse_burr_stats_tbl.Rd ├── util_inverse_pareto_aic.Rd ├── util_inverse_pareto_param_estimate.Rd ├── util_inverse_pareto_stats_tbl.Rd ├── util_inverse_weibull_aic.Rd ├── util_inverse_weibull_param_estimate.Rd ├── util_inverse_weibull_stats_tbl.Rd ├── util_logistic_aic.Rd ├── util_logistic_param_estimate.Rd ├── util_logistic_stats_tbl.Rd ├── util_lognormal_aic.Rd ├── util_lognormal_param_estimate.Rd ├── util_lognormal_stats_tbl.Rd ├── util_negative_binomial_aic.Rd ├── util_negative_binomial_param_estimate.Rd ├── util_negative_binomial_stats_tbl.Rd ├── util_normal_aic.Rd ├── util_normal_param_estimate.Rd ├── util_normal_stats_tbl.Rd ├── util_paralogistic_aic.Rd ├── util_paralogistic_param_estimate.Rd ├── util_paralogistic_stats_tbl.Rd ├── util_pareto1_aic.Rd ├── util_pareto1_param_estimate.Rd ├── util_pareto1_stats_tbl.Rd ├── util_pareto_aic.Rd ├── util_pareto_param_estimate.Rd ├── util_pareto_stats_tbl.Rd ├── util_poisson_aic.Rd ├── util_poisson_param_estimate.Rd ├── util_poisson_stats_tbl.Rd ├── util_t_aic.Rd ├── util_t_param_estimate.Rd ├── util_t_stats_tbl.Rd ├── util_triangular_aic.Rd ├── util_triangular_param_estimate.Rd ├── util_triangular_stats_tbl.Rd ├── util_uniform_aic.Rd ├── util_uniform_param_estimate.Rd ├── util_uniform_stats_tbl.Rd ├── util_weibull_aic.Rd ├── util_weibull_param_estimate.Rd ├── util_weibull_stats_tbl.Rd ├── util_zero_truncated_binomial_aic.Rd ├── util_zero_truncated_binomial_param_estimate.Rd ├── util_zero_truncated_binomial_stats_tbl.Rd ├── util_zero_truncated_geometric_aic.Rd ├── util_zero_truncated_geometric_param_estimate.Rd ├── util_zero_truncated_geometric_stats_tbl.Rd ├── util_zero_truncated_negative_binomial_aic.Rd ├── util_zero_truncated_negative_binomial_param_estimate.Rd ├── util_zero_truncated_negative_binomial_stats_tbl.Rd ├── util_zero_truncated_poisson_aic.Rd ├── util_zero_truncated_poisson_param_estimate.Rd └── util_zero_truncated_poisson_stats_tbl.Rd ├── pkgdown └── favicon │ ├── apple-touch-icon-120x120.png │ ├── apple-touch-icon-152x152.png │ ├── apple-touch-icon-180x180.png │ ├── apple-touch-icon-60x60.png │ ├── apple-touch-icon-76x76.png │ ├── apple-touch-icon.png │ ├── favicon-16x16.png │ ├── favicon-32x32.png │ └── favicon.ico ├── vignettes ├── .gitignore ├── advanced-features.Rmd ├── bootstrap-analysis.Rmd ├── core-concepts.Rmd ├── examples-and-use-cases.Rmd └── getting-started.Rmd └── wiki ├── Advanced-Features.md ├── Bootstrap-Analysis.md ├── Contributing-Guidelines.md ├── Core-Concepts.md ├── Development-Setup.md ├── Examples-and-Use-Cases.md ├── FAQ-and-Troubleshooting.md ├── Function-Reference.md ├── Home.md ├── Installation-and-Quick-Start.md ├── Parameter-Estimation.md ├── README.md ├── Supported-Distributions.md └── Visualization-and-Plotting.md /.Rbuildignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spsanderson/TidyDensity/HEAD/.Rbuildignore -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spsanderson/TidyDensity/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spsanderson/TidyDensity/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.github/copilot-instructions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spsanderson/TidyDensity/HEAD/.github/copilot-instructions.md -------------------------------------------------------------------------------- /.github/instructions/r.instructions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spsanderson/TidyDensity/HEAD/.github/instructions/r.instructions.md -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spsanderson/TidyDensity/HEAD/.gitignore -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spsanderson/TidyDensity/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- 1 | More to come 2 | -------------------------------------------------------------------------------- /DESCRIPTION: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spsanderson/TidyDensity/HEAD/DESCRIPTION -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | YEAR: 2022 2 | COPYRIGHT HOLDER: Steven Paul Sandeson II, MPH 3 | -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spsanderson/TidyDensity/HEAD/LICENSE.md -------------------------------------------------------------------------------- /NAMESPACE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spsanderson/TidyDensity/HEAD/NAMESPACE -------------------------------------------------------------------------------- /NEWS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spsanderson/TidyDensity/HEAD/NEWS.md -------------------------------------------------------------------------------- /R/00_global_variables.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spsanderson/TidyDensity/HEAD/R/00_global_variables.R -------------------------------------------------------------------------------- /R/augment-bootstrap-density.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spsanderson/TidyDensity/HEAD/R/augment-bootstrap-density.R -------------------------------------------------------------------------------- /R/augment-bootstrap-p.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spsanderson/TidyDensity/HEAD/R/augment-bootstrap-p.R -------------------------------------------------------------------------------- /R/augment-bootstrap-q.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spsanderson/TidyDensity/HEAD/R/augment-bootstrap-q.R -------------------------------------------------------------------------------- /R/autoplot-combined-dist.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spsanderson/TidyDensity/HEAD/R/autoplot-combined-dist.R -------------------------------------------------------------------------------- /R/autoplot-four-graphs.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spsanderson/TidyDensity/HEAD/R/autoplot-four-graphs.R -------------------------------------------------------------------------------- /R/autoplot-multi-dist.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spsanderson/TidyDensity/HEAD/R/autoplot-multi-dist.R -------------------------------------------------------------------------------- /R/autoplot-randomwalk.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spsanderson/TidyDensity/HEAD/R/autoplot-randomwalk.R -------------------------------------------------------------------------------- /R/autoplot-triangular.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spsanderson/TidyDensity/HEAD/R/autoplot-triangular.R -------------------------------------------------------------------------------- /R/autoplot.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spsanderson/TidyDensity/HEAD/R/autoplot.R -------------------------------------------------------------------------------- /R/bootstrap-unnest-tbl.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spsanderson/TidyDensity/HEAD/R/bootstrap-unnest-tbl.R -------------------------------------------------------------------------------- /R/combine-multi-single-dist-tbl.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spsanderson/TidyDensity/HEAD/R/combine-multi-single-dist-tbl.R -------------------------------------------------------------------------------- /R/combine-tidy-distributions-tbl.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spsanderson/TidyDensity/HEAD/R/combine-tidy-distributions-tbl.R -------------------------------------------------------------------------------- /R/empirical-tidy-bootstrap.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spsanderson/TidyDensity/HEAD/R/empirical-tidy-bootstrap.R -------------------------------------------------------------------------------- /R/empirical-tidy.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spsanderson/TidyDensity/HEAD/R/empirical-tidy.R -------------------------------------------------------------------------------- /R/est-param-bernoulli.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spsanderson/TidyDensity/HEAD/R/est-param-bernoulli.R -------------------------------------------------------------------------------- /R/est-param-beta.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spsanderson/TidyDensity/HEAD/R/est-param-beta.R -------------------------------------------------------------------------------- /R/est-param-binomial.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spsanderson/TidyDensity/HEAD/R/est-param-binomial.R -------------------------------------------------------------------------------- /R/est-param-burr.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spsanderson/TidyDensity/HEAD/R/est-param-burr.R -------------------------------------------------------------------------------- /R/est-param-cauchy.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spsanderson/TidyDensity/HEAD/R/est-param-cauchy.R -------------------------------------------------------------------------------- /R/est-param-chisq.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spsanderson/TidyDensity/HEAD/R/est-param-chisq.R -------------------------------------------------------------------------------- /R/est-param-exponential.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spsanderson/TidyDensity/HEAD/R/est-param-exponential.R -------------------------------------------------------------------------------- /R/est-param-f.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spsanderson/TidyDensity/HEAD/R/est-param-f.R -------------------------------------------------------------------------------- /R/est-param-gamma.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spsanderson/TidyDensity/HEAD/R/est-param-gamma.R -------------------------------------------------------------------------------- /R/est-param-gen-beta.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spsanderson/TidyDensity/HEAD/R/est-param-gen-beta.R -------------------------------------------------------------------------------- /R/est-param-gen-pareto.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spsanderson/TidyDensity/HEAD/R/est-param-gen-pareto.R -------------------------------------------------------------------------------- /R/est-param-geometric.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spsanderson/TidyDensity/HEAD/R/est-param-geometric.R -------------------------------------------------------------------------------- /R/est-param-hypergeometric.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spsanderson/TidyDensity/HEAD/R/est-param-hypergeometric.R -------------------------------------------------------------------------------- /R/est-param-inv-burr.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spsanderson/TidyDensity/HEAD/R/est-param-inv-burr.R -------------------------------------------------------------------------------- /R/est-param-inv-pareto.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spsanderson/TidyDensity/HEAD/R/est-param-inv-pareto.R -------------------------------------------------------------------------------- /R/est-param-inv-weibull.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spsanderson/TidyDensity/HEAD/R/est-param-inv-weibull.R -------------------------------------------------------------------------------- /R/est-param-logistic.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spsanderson/TidyDensity/HEAD/R/est-param-logistic.R -------------------------------------------------------------------------------- /R/est-param-lognormal.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spsanderson/TidyDensity/HEAD/R/est-param-lognormal.R -------------------------------------------------------------------------------- /R/est-param-negative-binomial.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spsanderson/TidyDensity/HEAD/R/est-param-negative-binomial.R -------------------------------------------------------------------------------- /R/est-param-normal.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spsanderson/TidyDensity/HEAD/R/est-param-normal.R -------------------------------------------------------------------------------- /R/est-param-paralogistic.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spsanderson/TidyDensity/HEAD/R/est-param-paralogistic.R -------------------------------------------------------------------------------- /R/est-param-pareto.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spsanderson/TidyDensity/HEAD/R/est-param-pareto.R -------------------------------------------------------------------------------- /R/est-param-pareto1.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spsanderson/TidyDensity/HEAD/R/est-param-pareto1.R -------------------------------------------------------------------------------- /R/est-param-poisson.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spsanderson/TidyDensity/HEAD/R/est-param-poisson.R -------------------------------------------------------------------------------- /R/est-param-t.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spsanderson/TidyDensity/HEAD/R/est-param-t.R -------------------------------------------------------------------------------- /R/est-param-triangular.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spsanderson/TidyDensity/HEAD/R/est-param-triangular.R -------------------------------------------------------------------------------- /R/est-param-uniform.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spsanderson/TidyDensity/HEAD/R/est-param-uniform.R -------------------------------------------------------------------------------- /R/est-param-weibull.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spsanderson/TidyDensity/HEAD/R/est-param-weibull.R -------------------------------------------------------------------------------- /R/est-param-zt-binom.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spsanderson/TidyDensity/HEAD/R/est-param-zt-binom.R -------------------------------------------------------------------------------- /R/est-param-zt-geometric.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spsanderson/TidyDensity/HEAD/R/est-param-zt-geometric.R -------------------------------------------------------------------------------- /R/est-param-ztn-binmoial.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spsanderson/TidyDensity/HEAD/R/est-param-ztn-binmoial.R -------------------------------------------------------------------------------- /R/est-param-ztpois.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spsanderson/TidyDensity/HEAD/R/est-param-ztpois.R -------------------------------------------------------------------------------- /R/helper-dist-type-extract.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spsanderson/TidyDensity/HEAD/R/helper-dist-type-extract.R -------------------------------------------------------------------------------- /R/palette-color-blind.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spsanderson/TidyDensity/HEAD/R/palette-color-blind.R -------------------------------------------------------------------------------- /R/plot-bootstrap-stat.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spsanderson/TidyDensity/HEAD/R/plot-bootstrap-stat.R -------------------------------------------------------------------------------- /R/random-tidy-bernoulli.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spsanderson/TidyDensity/HEAD/R/random-tidy-bernoulli.R -------------------------------------------------------------------------------- /R/random-tidy-beta.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spsanderson/TidyDensity/HEAD/R/random-tidy-beta.R -------------------------------------------------------------------------------- /R/random-tidy-binomial.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spsanderson/TidyDensity/HEAD/R/random-tidy-binomial.R -------------------------------------------------------------------------------- /R/random-tidy-burr-inverse.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spsanderson/TidyDensity/HEAD/R/random-tidy-burr-inverse.R -------------------------------------------------------------------------------- /R/random-tidy-burr.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spsanderson/TidyDensity/HEAD/R/random-tidy-burr.R -------------------------------------------------------------------------------- /R/random-tidy-cauchy.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spsanderson/TidyDensity/HEAD/R/random-tidy-cauchy.R -------------------------------------------------------------------------------- /R/random-tidy-chisquare.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spsanderson/TidyDensity/HEAD/R/random-tidy-chisquare.R -------------------------------------------------------------------------------- /R/random-tidy-exponential-inverse.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spsanderson/TidyDensity/HEAD/R/random-tidy-exponential-inverse.R -------------------------------------------------------------------------------- /R/random-tidy-exponential.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spsanderson/TidyDensity/HEAD/R/random-tidy-exponential.R -------------------------------------------------------------------------------- /R/random-tidy-f.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spsanderson/TidyDensity/HEAD/R/random-tidy-f.R -------------------------------------------------------------------------------- /R/random-tidy-gamma-inverse.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spsanderson/TidyDensity/HEAD/R/random-tidy-gamma-inverse.R -------------------------------------------------------------------------------- /R/random-tidy-gamma.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spsanderson/TidyDensity/HEAD/R/random-tidy-gamma.R -------------------------------------------------------------------------------- /R/random-tidy-general-beta.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spsanderson/TidyDensity/HEAD/R/random-tidy-general-beta.R -------------------------------------------------------------------------------- /R/random-tidy-general-pareto.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spsanderson/TidyDensity/HEAD/R/random-tidy-general-pareto.R -------------------------------------------------------------------------------- /R/random-tidy-geom.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spsanderson/TidyDensity/HEAD/R/random-tidy-geom.R -------------------------------------------------------------------------------- /R/random-tidy-hypergeometric.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spsanderson/TidyDensity/HEAD/R/random-tidy-hypergeometric.R -------------------------------------------------------------------------------- /R/random-tidy-logistic.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spsanderson/TidyDensity/HEAD/R/random-tidy-logistic.R -------------------------------------------------------------------------------- /R/random-tidy-lognormal.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spsanderson/TidyDensity/HEAD/R/random-tidy-lognormal.R -------------------------------------------------------------------------------- /R/random-tidy-mixture.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spsanderson/TidyDensity/HEAD/R/random-tidy-mixture.R -------------------------------------------------------------------------------- /R/random-tidy-negative-binomial.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spsanderson/TidyDensity/HEAD/R/random-tidy-negative-binomial.R -------------------------------------------------------------------------------- /R/random-tidy-normal-inverse.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spsanderson/TidyDensity/HEAD/R/random-tidy-normal-inverse.R -------------------------------------------------------------------------------- /R/random-tidy-normal.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spsanderson/TidyDensity/HEAD/R/random-tidy-normal.R -------------------------------------------------------------------------------- /R/random-tidy-paralogistic.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spsanderson/TidyDensity/HEAD/R/random-tidy-paralogistic.R -------------------------------------------------------------------------------- /R/random-tidy-pareto-inverse.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spsanderson/TidyDensity/HEAD/R/random-tidy-pareto-inverse.R -------------------------------------------------------------------------------- /R/random-tidy-pareto-single-param.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spsanderson/TidyDensity/HEAD/R/random-tidy-pareto-single-param.R -------------------------------------------------------------------------------- /R/random-tidy-pareto.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spsanderson/TidyDensity/HEAD/R/random-tidy-pareto.R -------------------------------------------------------------------------------- /R/random-tidy-poisson.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spsanderson/TidyDensity/HEAD/R/random-tidy-poisson.R -------------------------------------------------------------------------------- /R/random-tidy-t.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spsanderson/TidyDensity/HEAD/R/random-tidy-t.R -------------------------------------------------------------------------------- /R/random-tidy-triangular.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spsanderson/TidyDensity/HEAD/R/random-tidy-triangular.R -------------------------------------------------------------------------------- /R/random-tidy-uniform.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spsanderson/TidyDensity/HEAD/R/random-tidy-uniform.R -------------------------------------------------------------------------------- /R/random-tidy-weibull-inverse.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spsanderson/TidyDensity/HEAD/R/random-tidy-weibull-inverse.R -------------------------------------------------------------------------------- /R/random-tidy-weibull.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spsanderson/TidyDensity/HEAD/R/random-tidy-weibull.R -------------------------------------------------------------------------------- /R/random-tidy-zero-truc-poisson.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spsanderson/TidyDensity/HEAD/R/random-tidy-zero-truc-poisson.R -------------------------------------------------------------------------------- /R/random-tidy-zero-trunc-geometric.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spsanderson/TidyDensity/HEAD/R/random-tidy-zero-trunc-geometric.R -------------------------------------------------------------------------------- /R/random-tidy-zero-truncated-binomial.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spsanderson/TidyDensity/HEAD/R/random-tidy-zero-truncated-binomial.R -------------------------------------------------------------------------------- /R/random-zero-trunc-negative-binomial.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spsanderson/TidyDensity/HEAD/R/random-zero-trunc-negative-binomial.R -------------------------------------------------------------------------------- /R/stats-bernoulli-tbl.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spsanderson/TidyDensity/HEAD/R/stats-bernoulli-tbl.R -------------------------------------------------------------------------------- /R/stats-beta-tbl.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spsanderson/TidyDensity/HEAD/R/stats-beta-tbl.R -------------------------------------------------------------------------------- /R/stats-binomial-tbl.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spsanderson/TidyDensity/HEAD/R/stats-binomial-tbl.R -------------------------------------------------------------------------------- /R/stats-burr-tbl.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spsanderson/TidyDensity/HEAD/R/stats-burr-tbl.R -------------------------------------------------------------------------------- /R/stats-cauchy-tbl.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spsanderson/TidyDensity/HEAD/R/stats-cauchy-tbl.R -------------------------------------------------------------------------------- /R/stats-chisquare-tbl.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spsanderson/TidyDensity/HEAD/R/stats-chisquare-tbl.R -------------------------------------------------------------------------------- /R/stats-confidence-intervals.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spsanderson/TidyDensity/HEAD/R/stats-confidence-intervals.R -------------------------------------------------------------------------------- /R/stats-exponential-tbl.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spsanderson/TidyDensity/HEAD/R/stats-exponential-tbl.R -------------------------------------------------------------------------------- /R/stats-f-tbl.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spsanderson/TidyDensity/HEAD/R/stats-f-tbl.R -------------------------------------------------------------------------------- /R/stats-gamma-tbl.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spsanderson/TidyDensity/HEAD/R/stats-gamma-tbl.R -------------------------------------------------------------------------------- /R/stats-gen-beta-tbl.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spsanderson/TidyDensity/HEAD/R/stats-gen-beta-tbl.R -------------------------------------------------------------------------------- /R/stats-gen-pareto-tbl.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spsanderson/TidyDensity/HEAD/R/stats-gen-pareto-tbl.R -------------------------------------------------------------------------------- /R/stats-geometric-tbl.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spsanderson/TidyDensity/HEAD/R/stats-geometric-tbl.R -------------------------------------------------------------------------------- /R/stats-hypergeometric-tbl.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spsanderson/TidyDensity/HEAD/R/stats-hypergeometric-tbl.R -------------------------------------------------------------------------------- /R/stats-inv-burr-tbl.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spsanderson/TidyDensity/HEAD/R/stats-inv-burr-tbl.R -------------------------------------------------------------------------------- /R/stats-inv-pareto-tbl.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spsanderson/TidyDensity/HEAD/R/stats-inv-pareto-tbl.R -------------------------------------------------------------------------------- /R/stats-inv-weibull-tbl.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spsanderson/TidyDensity/HEAD/R/stats-inv-weibull-tbl.R -------------------------------------------------------------------------------- /R/stats-logistic-tbl.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spsanderson/TidyDensity/HEAD/R/stats-logistic-tbl.R -------------------------------------------------------------------------------- /R/stats-lognormal-tbl.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spsanderson/TidyDensity/HEAD/R/stats-lognormal-tbl.R -------------------------------------------------------------------------------- /R/stats-negative-binomial-tbl.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spsanderson/TidyDensity/HEAD/R/stats-negative-binomial-tbl.R -------------------------------------------------------------------------------- /R/stats-normal-tbl.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spsanderson/TidyDensity/HEAD/R/stats-normal-tbl.R -------------------------------------------------------------------------------- /R/stats-paarlogistic-tbl.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spsanderson/TidyDensity/HEAD/R/stats-paarlogistic-tbl.R -------------------------------------------------------------------------------- /R/stats-pareto-tbl.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spsanderson/TidyDensity/HEAD/R/stats-pareto-tbl.R -------------------------------------------------------------------------------- /R/stats-pareto1-tbl.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spsanderson/TidyDensity/HEAD/R/stats-pareto1-tbl.R -------------------------------------------------------------------------------- /R/stats-poisson-tbl.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spsanderson/TidyDensity/HEAD/R/stats-poisson-tbl.R -------------------------------------------------------------------------------- /R/stats-t-tbl.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spsanderson/TidyDensity/HEAD/R/stats-t-tbl.R -------------------------------------------------------------------------------- /R/stats-tidy-stat-func-tbl.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spsanderson/TidyDensity/HEAD/R/stats-tidy-stat-func-tbl.R -------------------------------------------------------------------------------- /R/stats-triangular-tbl.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spsanderson/TidyDensity/HEAD/R/stats-triangular-tbl.R -------------------------------------------------------------------------------- /R/stats-uniform-tbl.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spsanderson/TidyDensity/HEAD/R/stats-uniform-tbl.R -------------------------------------------------------------------------------- /R/stats-weibull-tbl.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spsanderson/TidyDensity/HEAD/R/stats-weibull-tbl.R -------------------------------------------------------------------------------- /R/stats-zt-binomial-tbl.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spsanderson/TidyDensity/HEAD/R/stats-zt-binomial-tbl.R -------------------------------------------------------------------------------- /R/stats-zt-geometric-tbl.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spsanderson/TidyDensity/HEAD/R/stats-zt-geometric-tbl.R -------------------------------------------------------------------------------- /R/stats-ztn-binomial-tbl.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spsanderson/TidyDensity/HEAD/R/stats-ztn-binomial-tbl.R -------------------------------------------------------------------------------- /R/stats-ztpoisson-tbl.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spsanderson/TidyDensity/HEAD/R/stats-ztpoisson-tbl.R -------------------------------------------------------------------------------- /R/tidy-random-walk.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spsanderson/TidyDensity/HEAD/R/tidy-random-walk.R -------------------------------------------------------------------------------- /R/tidy_distribution_summary_tbl.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spsanderson/TidyDensity/HEAD/R/tidy_distribution_summary_tbl.R -------------------------------------------------------------------------------- /R/utils-aic-beta.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spsanderson/TidyDensity/HEAD/R/utils-aic-beta.R -------------------------------------------------------------------------------- /R/utils-aic-binomial.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spsanderson/TidyDensity/HEAD/R/utils-aic-binomial.R -------------------------------------------------------------------------------- /R/utils-aic-cauchy.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spsanderson/TidyDensity/HEAD/R/utils-aic-cauchy.R -------------------------------------------------------------------------------- /R/utils-aic-chisq.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spsanderson/TidyDensity/HEAD/R/utils-aic-chisq.R -------------------------------------------------------------------------------- /R/utils-aic-exponential.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spsanderson/TidyDensity/HEAD/R/utils-aic-exponential.R -------------------------------------------------------------------------------- /R/utils-aic-f.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spsanderson/TidyDensity/HEAD/R/utils-aic-f.R -------------------------------------------------------------------------------- /R/utils-aic-gamma.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spsanderson/TidyDensity/HEAD/R/utils-aic-gamma.R -------------------------------------------------------------------------------- /R/utils-aic-gen-beta.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spsanderson/TidyDensity/HEAD/R/utils-aic-gen-beta.R -------------------------------------------------------------------------------- /R/utils-aic-gen-pareto.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spsanderson/TidyDensity/HEAD/R/utils-aic-gen-pareto.R -------------------------------------------------------------------------------- /R/utils-aic-geometric.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spsanderson/TidyDensity/HEAD/R/utils-aic-geometric.R -------------------------------------------------------------------------------- /R/utils-aic-hypergeometric.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spsanderson/TidyDensity/HEAD/R/utils-aic-hypergeometric.R -------------------------------------------------------------------------------- /R/utils-aic-inv-burr.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spsanderson/TidyDensity/HEAD/R/utils-aic-inv-burr.R -------------------------------------------------------------------------------- /R/utils-aic-inv-pareto.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spsanderson/TidyDensity/HEAD/R/utils-aic-inv-pareto.R -------------------------------------------------------------------------------- /R/utils-aic-inv-weibull.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spsanderson/TidyDensity/HEAD/R/utils-aic-inv-weibull.R -------------------------------------------------------------------------------- /R/utils-aic-logistic.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spsanderson/TidyDensity/HEAD/R/utils-aic-logistic.R -------------------------------------------------------------------------------- /R/utils-aic-lognormal.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spsanderson/TidyDensity/HEAD/R/utils-aic-lognormal.R -------------------------------------------------------------------------------- /R/utils-aic-negative-binomial.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spsanderson/TidyDensity/HEAD/R/utils-aic-negative-binomial.R -------------------------------------------------------------------------------- /R/utils-aic-normal.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spsanderson/TidyDensity/HEAD/R/utils-aic-normal.R -------------------------------------------------------------------------------- /R/utils-aic-paralogistic.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spsanderson/TidyDensity/HEAD/R/utils-aic-paralogistic.R -------------------------------------------------------------------------------- /R/utils-aic-pareto.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spsanderson/TidyDensity/HEAD/R/utils-aic-pareto.R -------------------------------------------------------------------------------- /R/utils-aic-poisson.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spsanderson/TidyDensity/HEAD/R/utils-aic-poisson.R -------------------------------------------------------------------------------- /R/utils-aic-t.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spsanderson/TidyDensity/HEAD/R/utils-aic-t.R -------------------------------------------------------------------------------- /R/utils-aic-triangular.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spsanderson/TidyDensity/HEAD/R/utils-aic-triangular.R -------------------------------------------------------------------------------- /R/utils-aic-uniform.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spsanderson/TidyDensity/HEAD/R/utils-aic-uniform.R -------------------------------------------------------------------------------- /R/utils-aic-weibull.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spsanderson/TidyDensity/HEAD/R/utils-aic-weibull.R -------------------------------------------------------------------------------- /R/utils-aic-zt-binom.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spsanderson/TidyDensity/HEAD/R/utils-aic-zt-binom.R -------------------------------------------------------------------------------- /R/utils-aic-zt-geometric.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spsanderson/TidyDensity/HEAD/R/utils-aic-zt-geometric.R -------------------------------------------------------------------------------- /R/utils-aic-ztn-binomial.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spsanderson/TidyDensity/HEAD/R/utils-aic-ztn-binomial.R -------------------------------------------------------------------------------- /R/utils-aic-ztpoisson.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spsanderson/TidyDensity/HEAD/R/utils-aic-ztpoisson.R -------------------------------------------------------------------------------- /R/utils-check-dupe-rows.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spsanderson/TidyDensity/HEAD/R/utils-check-dupe-rows.R -------------------------------------------------------------------------------- /R/utils-convert-to-ts.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spsanderson/TidyDensity/HEAD/R/utils-convert-to-ts.R -------------------------------------------------------------------------------- /R/utils-distribution-comparison.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spsanderson/TidyDensity/HEAD/R/utils-distribution-comparison.R -------------------------------------------------------------------------------- /R/utils-mcmc-sampling.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spsanderson/TidyDensity/HEAD/R/utils-mcmc-sampling.R -------------------------------------------------------------------------------- /R/utils-pipe.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spsanderson/TidyDensity/HEAD/R/utils-pipe.R -------------------------------------------------------------------------------- /R/utils-quantile-normalize.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spsanderson/TidyDensity/HEAD/R/utils-quantile-normalize.R -------------------------------------------------------------------------------- /R/utils-tidy-eval.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spsanderson/TidyDensity/HEAD/R/utils-tidy-eval.R -------------------------------------------------------------------------------- /R/utis-aic-pareto1.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spsanderson/TidyDensity/HEAD/R/utis-aic-pareto1.R -------------------------------------------------------------------------------- /R/vec-bootstrap-p.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spsanderson/TidyDensity/HEAD/R/vec-bootstrap-p.R -------------------------------------------------------------------------------- /R/vec-bootstrap-q.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spsanderson/TidyDensity/HEAD/R/vec-bootstrap-q.R -------------------------------------------------------------------------------- /R/vec-cumulative-functions.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spsanderson/TidyDensity/HEAD/R/vec-cumulative-functions.R -------------------------------------------------------------------------------- /R/vec-kurtosis.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spsanderson/TidyDensity/HEAD/R/vec-kurtosis.R -------------------------------------------------------------------------------- /R/vec-range.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spsanderson/TidyDensity/HEAD/R/vec-range.R -------------------------------------------------------------------------------- /R/vec-scale-zero-one.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spsanderson/TidyDensity/HEAD/R/vec-scale-zero-one.R -------------------------------------------------------------------------------- /R/vec-skewness.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spsanderson/TidyDensity/HEAD/R/vec-skewness.R -------------------------------------------------------------------------------- /R/zzz.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spsanderson/TidyDensity/HEAD/R/zzz.R -------------------------------------------------------------------------------- /README.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spsanderson/TidyDensity/HEAD/README.Rmd -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spsanderson/TidyDensity/HEAD/README.md -------------------------------------------------------------------------------- /TidyDensity.Rproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spsanderson/TidyDensity/HEAD/TidyDensity.Rproj -------------------------------------------------------------------------------- /_pkgdown.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spsanderson/TidyDensity/HEAD/_pkgdown.yml -------------------------------------------------------------------------------- /cran-comments.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spsanderson/TidyDensity/HEAD/cran-comments.md -------------------------------------------------------------------------------- /docs/404.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spsanderson/TidyDensity/HEAD/docs/404.html -------------------------------------------------------------------------------- /docs/404.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spsanderson/TidyDensity/HEAD/docs/404.md -------------------------------------------------------------------------------- /docs/CODE_OF_CONDUCT.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spsanderson/TidyDensity/HEAD/docs/CODE_OF_CONDUCT.html -------------------------------------------------------------------------------- /docs/CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spsanderson/TidyDensity/HEAD/docs/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /docs/CONTRIBUTING.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spsanderson/TidyDensity/HEAD/docs/CONTRIBUTING.html -------------------------------------------------------------------------------- /docs/CONTRIBUTING.md: -------------------------------------------------------------------------------- 1 | # NA 2 | 3 | More to come 4 | -------------------------------------------------------------------------------- /docs/LICENSE-text.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spsanderson/TidyDensity/HEAD/docs/LICENSE-text.html -------------------------------------------------------------------------------- /docs/LICENSE-text.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spsanderson/TidyDensity/HEAD/docs/LICENSE-text.md -------------------------------------------------------------------------------- /docs/LICENSE.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spsanderson/TidyDensity/HEAD/docs/LICENSE.html -------------------------------------------------------------------------------- /docs/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spsanderson/TidyDensity/HEAD/docs/LICENSE.md -------------------------------------------------------------------------------- /docs/apple-touch-icon-120x120.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spsanderson/TidyDensity/HEAD/docs/apple-touch-icon-120x120.png -------------------------------------------------------------------------------- /docs/apple-touch-icon-152x152.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spsanderson/TidyDensity/HEAD/docs/apple-touch-icon-152x152.png -------------------------------------------------------------------------------- /docs/apple-touch-icon-180x180.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spsanderson/TidyDensity/HEAD/docs/apple-touch-icon-180x180.png -------------------------------------------------------------------------------- /docs/apple-touch-icon-60x60.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spsanderson/TidyDensity/HEAD/docs/apple-touch-icon-60x60.png -------------------------------------------------------------------------------- /docs/apple-touch-icon-76x76.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spsanderson/TidyDensity/HEAD/docs/apple-touch-icon-76x76.png -------------------------------------------------------------------------------- /docs/apple-touch-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spsanderson/TidyDensity/HEAD/docs/apple-touch-icon.png -------------------------------------------------------------------------------- /docs/articles/advanced-features.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spsanderson/TidyDensity/HEAD/docs/articles/advanced-features.html -------------------------------------------------------------------------------- /docs/articles/advanced-features.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spsanderson/TidyDensity/HEAD/docs/articles/advanced-features.md -------------------------------------------------------------------------------- /docs/articles/bootstrap-analysis.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spsanderson/TidyDensity/HEAD/docs/articles/bootstrap-analysis.html -------------------------------------------------------------------------------- /docs/articles/bootstrap-analysis.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spsanderson/TidyDensity/HEAD/docs/articles/bootstrap-analysis.md -------------------------------------------------------------------------------- /docs/articles/core-concepts.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spsanderson/TidyDensity/HEAD/docs/articles/core-concepts.html -------------------------------------------------------------------------------- /docs/articles/core-concepts.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spsanderson/TidyDensity/HEAD/docs/articles/core-concepts.md -------------------------------------------------------------------------------- /docs/articles/examples-and-use-cases.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spsanderson/TidyDensity/HEAD/docs/articles/examples-and-use-cases.html -------------------------------------------------------------------------------- /docs/articles/examples-and-use-cases.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spsanderson/TidyDensity/HEAD/docs/articles/examples-and-use-cases.md -------------------------------------------------------------------------------- /docs/articles/getting-started.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spsanderson/TidyDensity/HEAD/docs/articles/getting-started.html -------------------------------------------------------------------------------- /docs/articles/getting-started.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spsanderson/TidyDensity/HEAD/docs/articles/getting-started.md -------------------------------------------------------------------------------- /docs/articles/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spsanderson/TidyDensity/HEAD/docs/articles/index.html -------------------------------------------------------------------------------- /docs/articles/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spsanderson/TidyDensity/HEAD/docs/articles/index.md -------------------------------------------------------------------------------- /docs/authors.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spsanderson/TidyDensity/HEAD/docs/authors.html -------------------------------------------------------------------------------- /docs/authors.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spsanderson/TidyDensity/HEAD/docs/authors.md -------------------------------------------------------------------------------- /docs/bootstrap-toc.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spsanderson/TidyDensity/HEAD/docs/bootstrap-toc.css -------------------------------------------------------------------------------- /docs/bootstrap-toc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spsanderson/TidyDensity/HEAD/docs/bootstrap-toc.js -------------------------------------------------------------------------------- /docs/copilot-instructions.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spsanderson/TidyDensity/HEAD/docs/copilot-instructions.html -------------------------------------------------------------------------------- /docs/copilot-instructions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spsanderson/TidyDensity/HEAD/docs/copilot-instructions.md -------------------------------------------------------------------------------- /docs/deps/bootstrap-5.1.3/bootstrap.bundle.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spsanderson/TidyDensity/HEAD/docs/deps/bootstrap-5.1.3/bootstrap.bundle.min.js -------------------------------------------------------------------------------- /docs/deps/bootstrap-5.1.3/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spsanderson/TidyDensity/HEAD/docs/deps/bootstrap-5.1.3/bootstrap.min.css -------------------------------------------------------------------------------- /docs/deps/bootstrap-5.1.3/font.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spsanderson/TidyDensity/HEAD/docs/deps/bootstrap-5.1.3/font.css -------------------------------------------------------------------------------- /docs/deps/bootstrap-5.1.3/fonts/S6uyw4BMUTPHvxo.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spsanderson/TidyDensity/HEAD/docs/deps/bootstrap-5.1.3/fonts/S6uyw4BMUTPHvxo.woff -------------------------------------------------------------------------------- /docs/deps/bootstrap-5.2.2/bootstrap.bundle.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spsanderson/TidyDensity/HEAD/docs/deps/bootstrap-5.2.2/bootstrap.bundle.min.js -------------------------------------------------------------------------------- /docs/deps/bootstrap-5.2.2/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spsanderson/TidyDensity/HEAD/docs/deps/bootstrap-5.2.2/bootstrap.min.css -------------------------------------------------------------------------------- /docs/deps/bootstrap-5.2.2/font.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spsanderson/TidyDensity/HEAD/docs/deps/bootstrap-5.2.2/font.css -------------------------------------------------------------------------------- /docs/deps/bootstrap-5.2.2/fonts/S6uyw4BMUTPHvxo.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spsanderson/TidyDensity/HEAD/docs/deps/bootstrap-5.2.2/fonts/S6uyw4BMUTPHvxo.woff -------------------------------------------------------------------------------- /docs/deps/bootstrap-5.3.1/bootstrap.bundle.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spsanderson/TidyDensity/HEAD/docs/deps/bootstrap-5.3.1/bootstrap.bundle.min.js -------------------------------------------------------------------------------- /docs/deps/bootstrap-5.3.1/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spsanderson/TidyDensity/HEAD/docs/deps/bootstrap-5.3.1/bootstrap.min.css -------------------------------------------------------------------------------- /docs/deps/bootstrap-5.3.1/font.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spsanderson/TidyDensity/HEAD/docs/deps/bootstrap-5.3.1/font.css -------------------------------------------------------------------------------- /docs/deps/bootstrap-toc-1.0.1/bootstrap-toc.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spsanderson/TidyDensity/HEAD/docs/deps/bootstrap-toc-1.0.1/bootstrap-toc.min.js -------------------------------------------------------------------------------- /docs/deps/clipboard.js-2.0.11/clipboard.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spsanderson/TidyDensity/HEAD/docs/deps/clipboard.js-2.0.11/clipboard.min.js -------------------------------------------------------------------------------- /docs/deps/data-deps.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spsanderson/TidyDensity/HEAD/docs/deps/data-deps.txt -------------------------------------------------------------------------------- /docs/deps/font-awesome-6.5.2/css/all.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spsanderson/TidyDensity/HEAD/docs/deps/font-awesome-6.5.2/css/all.css -------------------------------------------------------------------------------- /docs/deps/font-awesome-6.5.2/css/all.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spsanderson/TidyDensity/HEAD/docs/deps/font-awesome-6.5.2/css/all.min.css -------------------------------------------------------------------------------- /docs/deps/font-awesome-6.5.2/css/v4-shims.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spsanderson/TidyDensity/HEAD/docs/deps/font-awesome-6.5.2/css/v4-shims.css -------------------------------------------------------------------------------- /docs/deps/font-awesome-6.5.2/css/v4-shims.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spsanderson/TidyDensity/HEAD/docs/deps/font-awesome-6.5.2/css/v4-shims.min.css -------------------------------------------------------------------------------- /docs/deps/headroom-0.11.0/headroom.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spsanderson/TidyDensity/HEAD/docs/deps/headroom-0.11.0/headroom.min.js -------------------------------------------------------------------------------- /docs/deps/headroom-0.11.0/jQuery.headroom.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spsanderson/TidyDensity/HEAD/docs/deps/headroom-0.11.0/jQuery.headroom.min.js -------------------------------------------------------------------------------- /docs/deps/jquery-3.6.0/jquery-3.6.0.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spsanderson/TidyDensity/HEAD/docs/deps/jquery-3.6.0/jquery-3.6.0.js -------------------------------------------------------------------------------- /docs/deps/jquery-3.6.0/jquery-3.6.0.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spsanderson/TidyDensity/HEAD/docs/deps/jquery-3.6.0/jquery-3.6.0.min.js -------------------------------------------------------------------------------- /docs/deps/jquery-3.6.0/jquery-3.6.0.min.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spsanderson/TidyDensity/HEAD/docs/deps/jquery-3.6.0/jquery-3.6.0.min.map -------------------------------------------------------------------------------- /docs/deps/search-1.0.0/autocomplete.jquery.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spsanderson/TidyDensity/HEAD/docs/deps/search-1.0.0/autocomplete.jquery.min.js -------------------------------------------------------------------------------- /docs/deps/search-1.0.0/fuse.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spsanderson/TidyDensity/HEAD/docs/deps/search-1.0.0/fuse.min.js -------------------------------------------------------------------------------- /docs/deps/search-1.0.0/mark.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spsanderson/TidyDensity/HEAD/docs/deps/search-1.0.0/mark.min.js -------------------------------------------------------------------------------- /docs/docsearch.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spsanderson/TidyDensity/HEAD/docs/docsearch.css -------------------------------------------------------------------------------- /docs/docsearch.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spsanderson/TidyDensity/HEAD/docs/docsearch.js -------------------------------------------------------------------------------- /docs/favicon-16x16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spsanderson/TidyDensity/HEAD/docs/favicon-16x16.png -------------------------------------------------------------------------------- /docs/favicon-32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spsanderson/TidyDensity/HEAD/docs/favicon-32x32.png -------------------------------------------------------------------------------- /docs/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spsanderson/TidyDensity/HEAD/docs/favicon.ico -------------------------------------------------------------------------------- /docs/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spsanderson/TidyDensity/HEAD/docs/index.html -------------------------------------------------------------------------------- /docs/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spsanderson/TidyDensity/HEAD/docs/index.md -------------------------------------------------------------------------------- /docs/katex-auto.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spsanderson/TidyDensity/HEAD/docs/katex-auto.js -------------------------------------------------------------------------------- /docs/lightswitch.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spsanderson/TidyDensity/HEAD/docs/lightswitch.js -------------------------------------------------------------------------------- /docs/link.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spsanderson/TidyDensity/HEAD/docs/link.svg -------------------------------------------------------------------------------- /docs/llms.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spsanderson/TidyDensity/HEAD/docs/llms.txt -------------------------------------------------------------------------------- /docs/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spsanderson/TidyDensity/HEAD/docs/logo.png -------------------------------------------------------------------------------- /docs/news/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spsanderson/TidyDensity/HEAD/docs/news/index.html -------------------------------------------------------------------------------- /docs/news/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spsanderson/TidyDensity/HEAD/docs/news/index.md -------------------------------------------------------------------------------- /docs/pkgdown.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spsanderson/TidyDensity/HEAD/docs/pkgdown.css -------------------------------------------------------------------------------- /docs/pkgdown.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spsanderson/TidyDensity/HEAD/docs/pkgdown.js -------------------------------------------------------------------------------- /docs/pkgdown.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spsanderson/TidyDensity/HEAD/docs/pkgdown.yml -------------------------------------------------------------------------------- /docs/reference/.data.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spsanderson/TidyDensity/HEAD/docs/reference/.data.html -------------------------------------------------------------------------------- /docs/reference/Rplot001.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spsanderson/TidyDensity/HEAD/docs/reference/Rplot001.png -------------------------------------------------------------------------------- /docs/reference/Rplot002.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spsanderson/TidyDensity/HEAD/docs/reference/Rplot002.png -------------------------------------------------------------------------------- /docs/reference/as_label.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spsanderson/TidyDensity/HEAD/docs/reference/as_label.html -------------------------------------------------------------------------------- /docs/reference/as_name.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spsanderson/TidyDensity/HEAD/docs/reference/as_name.html -------------------------------------------------------------------------------- /docs/reference/bootstrap_density_augment.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spsanderson/TidyDensity/HEAD/docs/reference/bootstrap_density_augment.html -------------------------------------------------------------------------------- /docs/reference/bootstrap_density_augment.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spsanderson/TidyDensity/HEAD/docs/reference/bootstrap_density_augment.md -------------------------------------------------------------------------------- /docs/reference/bootstrap_p_augment.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spsanderson/TidyDensity/HEAD/docs/reference/bootstrap_p_augment.html -------------------------------------------------------------------------------- /docs/reference/bootstrap_p_augment.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spsanderson/TidyDensity/HEAD/docs/reference/bootstrap_p_augment.md -------------------------------------------------------------------------------- /docs/reference/bootstrap_p_vec.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spsanderson/TidyDensity/HEAD/docs/reference/bootstrap_p_vec.html -------------------------------------------------------------------------------- /docs/reference/bootstrap_p_vec.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spsanderson/TidyDensity/HEAD/docs/reference/bootstrap_p_vec.md -------------------------------------------------------------------------------- /docs/reference/bootstrap_q_augment.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spsanderson/TidyDensity/HEAD/docs/reference/bootstrap_q_augment.html -------------------------------------------------------------------------------- /docs/reference/bootstrap_q_augment.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spsanderson/TidyDensity/HEAD/docs/reference/bootstrap_q_augment.md -------------------------------------------------------------------------------- /docs/reference/bootstrap_q_vec.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spsanderson/TidyDensity/HEAD/docs/reference/bootstrap_q_vec.html -------------------------------------------------------------------------------- /docs/reference/bootstrap_q_vec.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spsanderson/TidyDensity/HEAD/docs/reference/bootstrap_q_vec.md -------------------------------------------------------------------------------- /docs/reference/bootstrap_stat_plot-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spsanderson/TidyDensity/HEAD/docs/reference/bootstrap_stat_plot-1.png -------------------------------------------------------------------------------- /docs/reference/bootstrap_stat_plot-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spsanderson/TidyDensity/HEAD/docs/reference/bootstrap_stat_plot-2.png -------------------------------------------------------------------------------- /docs/reference/bootstrap_stat_plot.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spsanderson/TidyDensity/HEAD/docs/reference/bootstrap_stat_plot.html -------------------------------------------------------------------------------- /docs/reference/bootstrap_stat_plot.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spsanderson/TidyDensity/HEAD/docs/reference/bootstrap_stat_plot.md -------------------------------------------------------------------------------- /docs/reference/bootstrap_unnest_tbl.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spsanderson/TidyDensity/HEAD/docs/reference/bootstrap_unnest_tbl.html -------------------------------------------------------------------------------- /docs/reference/bootstrap_unnest_tbl.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spsanderson/TidyDensity/HEAD/docs/reference/bootstrap_unnest_tbl.md -------------------------------------------------------------------------------- /docs/reference/cgmean.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spsanderson/TidyDensity/HEAD/docs/reference/cgmean.html -------------------------------------------------------------------------------- /docs/reference/cgmean.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spsanderson/TidyDensity/HEAD/docs/reference/cgmean.md -------------------------------------------------------------------------------- /docs/reference/check_duplicate_rows.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spsanderson/TidyDensity/HEAD/docs/reference/check_duplicate_rows.html -------------------------------------------------------------------------------- /docs/reference/check_duplicate_rows.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spsanderson/TidyDensity/HEAD/docs/reference/check_duplicate_rows.md -------------------------------------------------------------------------------- /docs/reference/chmean.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spsanderson/TidyDensity/HEAD/docs/reference/chmean.html -------------------------------------------------------------------------------- /docs/reference/chmean.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spsanderson/TidyDensity/HEAD/docs/reference/chmean.md -------------------------------------------------------------------------------- /docs/reference/ci_hi.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spsanderson/TidyDensity/HEAD/docs/reference/ci_hi.html -------------------------------------------------------------------------------- /docs/reference/ci_hi.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spsanderson/TidyDensity/HEAD/docs/reference/ci_hi.md -------------------------------------------------------------------------------- /docs/reference/ci_lo.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spsanderson/TidyDensity/HEAD/docs/reference/ci_lo.html -------------------------------------------------------------------------------- /docs/reference/ci_lo.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spsanderson/TidyDensity/HEAD/docs/reference/ci_lo.md -------------------------------------------------------------------------------- /docs/reference/ckurtosis.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spsanderson/TidyDensity/HEAD/docs/reference/ckurtosis.html -------------------------------------------------------------------------------- /docs/reference/ckurtosis.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spsanderson/TidyDensity/HEAD/docs/reference/ckurtosis.md -------------------------------------------------------------------------------- /docs/reference/cmean.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spsanderson/TidyDensity/HEAD/docs/reference/cmean.html -------------------------------------------------------------------------------- /docs/reference/cmean.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spsanderson/TidyDensity/HEAD/docs/reference/cmean.md -------------------------------------------------------------------------------- /docs/reference/cmedian.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spsanderson/TidyDensity/HEAD/docs/reference/cmedian.html -------------------------------------------------------------------------------- /docs/reference/cmedian.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spsanderson/TidyDensity/HEAD/docs/reference/cmedian.md -------------------------------------------------------------------------------- /docs/reference/color_blind.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spsanderson/TidyDensity/HEAD/docs/reference/color_blind.html -------------------------------------------------------------------------------- /docs/reference/color_blind.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spsanderson/TidyDensity/HEAD/docs/reference/color_blind.md -------------------------------------------------------------------------------- /docs/reference/convert_to_ts.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spsanderson/TidyDensity/HEAD/docs/reference/convert_to_ts.html -------------------------------------------------------------------------------- /docs/reference/convert_to_ts.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spsanderson/TidyDensity/HEAD/docs/reference/convert_to_ts.md -------------------------------------------------------------------------------- /docs/reference/csd.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spsanderson/TidyDensity/HEAD/docs/reference/csd.html -------------------------------------------------------------------------------- /docs/reference/csd.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spsanderson/TidyDensity/HEAD/docs/reference/csd.md -------------------------------------------------------------------------------- /docs/reference/cskewness.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spsanderson/TidyDensity/HEAD/docs/reference/cskewness.html -------------------------------------------------------------------------------- /docs/reference/cskewness.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spsanderson/TidyDensity/HEAD/docs/reference/cskewness.md -------------------------------------------------------------------------------- /docs/reference/cvar.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spsanderson/TidyDensity/HEAD/docs/reference/cvar.html -------------------------------------------------------------------------------- /docs/reference/cvar.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spsanderson/TidyDensity/HEAD/docs/reference/cvar.md -------------------------------------------------------------------------------- /docs/reference/dist_type_extractor.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spsanderson/TidyDensity/HEAD/docs/reference/dist_type_extractor.html -------------------------------------------------------------------------------- /docs/reference/dist_type_extractor.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spsanderson/TidyDensity/HEAD/docs/reference/dist_type_extractor.md -------------------------------------------------------------------------------- /docs/reference/enquo.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spsanderson/TidyDensity/HEAD/docs/reference/enquo.html -------------------------------------------------------------------------------- /docs/reference/enquos.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spsanderson/TidyDensity/HEAD/docs/reference/enquos.html -------------------------------------------------------------------------------- /docs/reference/figures/README-plot_density-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spsanderson/TidyDensity/HEAD/docs/reference/figures/README-plot_density-1.png -------------------------------------------------------------------------------- /docs/reference/figures/README-plot_density-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spsanderson/TidyDensity/HEAD/docs/reference/figures/README-plot_density-2.png -------------------------------------------------------------------------------- /docs/reference/figures/README-plot_density-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spsanderson/TidyDensity/HEAD/docs/reference/figures/README-plot_density-3.png -------------------------------------------------------------------------------- /docs/reference/figures/README-plot_density-4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spsanderson/TidyDensity/HEAD/docs/reference/figures/README-plot_density-4.png -------------------------------------------------------------------------------- /docs/reference/figures/README-pressure-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spsanderson/TidyDensity/HEAD/docs/reference/figures/README-pressure-1.png -------------------------------------------------------------------------------- /docs/reference/figures/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spsanderson/TidyDensity/HEAD/docs/reference/figures/logo.png -------------------------------------------------------------------------------- /docs/reference/figures/tidy_density_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spsanderson/TidyDensity/HEAD/docs/reference/figures/tidy_density_logo.png -------------------------------------------------------------------------------- /docs/reference/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spsanderson/TidyDensity/HEAD/docs/reference/index.html -------------------------------------------------------------------------------- /docs/reference/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spsanderson/TidyDensity/HEAD/docs/reference/index.md -------------------------------------------------------------------------------- /docs/reference/pipe.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spsanderson/TidyDensity/HEAD/docs/reference/pipe.html -------------------------------------------------------------------------------- /docs/reference/pipe.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spsanderson/TidyDensity/HEAD/docs/reference/pipe.md -------------------------------------------------------------------------------- /docs/reference/quantile_normalize.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spsanderson/TidyDensity/HEAD/docs/reference/quantile_normalize.html -------------------------------------------------------------------------------- /docs/reference/quantile_normalize.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spsanderson/TidyDensity/HEAD/docs/reference/quantile_normalize.md -------------------------------------------------------------------------------- /docs/reference/td_scale_color_colorblind.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spsanderson/TidyDensity/HEAD/docs/reference/td_scale_color_colorblind.html -------------------------------------------------------------------------------- /docs/reference/td_scale_color_colorblind.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spsanderson/TidyDensity/HEAD/docs/reference/td_scale_color_colorblind.md -------------------------------------------------------------------------------- /docs/reference/td_scale_fill_colorblind.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spsanderson/TidyDensity/HEAD/docs/reference/td_scale_fill_colorblind.html -------------------------------------------------------------------------------- /docs/reference/td_scale_fill_colorblind.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spsanderson/TidyDensity/HEAD/docs/reference/td_scale_fill_colorblind.md -------------------------------------------------------------------------------- /docs/reference/tidy_autoplot-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spsanderson/TidyDensity/HEAD/docs/reference/tidy_autoplot-1.png -------------------------------------------------------------------------------- /docs/reference/tidy_autoplot-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spsanderson/TidyDensity/HEAD/docs/reference/tidy_autoplot-2.png -------------------------------------------------------------------------------- /docs/reference/tidy_autoplot.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spsanderson/TidyDensity/HEAD/docs/reference/tidy_autoplot.html -------------------------------------------------------------------------------- /docs/reference/tidy_autoplot.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spsanderson/TidyDensity/HEAD/docs/reference/tidy_autoplot.md -------------------------------------------------------------------------------- /docs/reference/tidy_bernoulli.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spsanderson/TidyDensity/HEAD/docs/reference/tidy_bernoulli.html -------------------------------------------------------------------------------- /docs/reference/tidy_bernoulli.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spsanderson/TidyDensity/HEAD/docs/reference/tidy_bernoulli.md -------------------------------------------------------------------------------- /docs/reference/tidy_beta.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spsanderson/TidyDensity/HEAD/docs/reference/tidy_beta.html -------------------------------------------------------------------------------- /docs/reference/tidy_beta.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spsanderson/TidyDensity/HEAD/docs/reference/tidy_beta.md -------------------------------------------------------------------------------- /docs/reference/tidy_binomial.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spsanderson/TidyDensity/HEAD/docs/reference/tidy_binomial.html -------------------------------------------------------------------------------- /docs/reference/tidy_binomial.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spsanderson/TidyDensity/HEAD/docs/reference/tidy_binomial.md -------------------------------------------------------------------------------- /docs/reference/tidy_bootstrap.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spsanderson/TidyDensity/HEAD/docs/reference/tidy_bootstrap.html -------------------------------------------------------------------------------- /docs/reference/tidy_bootstrap.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spsanderson/TidyDensity/HEAD/docs/reference/tidy_bootstrap.md -------------------------------------------------------------------------------- /docs/reference/tidy_burr.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spsanderson/TidyDensity/HEAD/docs/reference/tidy_burr.html -------------------------------------------------------------------------------- /docs/reference/tidy_burr.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spsanderson/TidyDensity/HEAD/docs/reference/tidy_burr.md -------------------------------------------------------------------------------- /docs/reference/tidy_cauchy.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spsanderson/TidyDensity/HEAD/docs/reference/tidy_cauchy.html -------------------------------------------------------------------------------- /docs/reference/tidy_cauchy.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spsanderson/TidyDensity/HEAD/docs/reference/tidy_cauchy.md -------------------------------------------------------------------------------- /docs/reference/tidy_chisquare.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spsanderson/TidyDensity/HEAD/docs/reference/tidy_chisquare.html -------------------------------------------------------------------------------- /docs/reference/tidy_chisquare.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spsanderson/TidyDensity/HEAD/docs/reference/tidy_chisquare.md -------------------------------------------------------------------------------- /docs/reference/tidy_combine_distributions.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spsanderson/TidyDensity/HEAD/docs/reference/tidy_combine_distributions.html -------------------------------------------------------------------------------- /docs/reference/tidy_combine_distributions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spsanderson/TidyDensity/HEAD/docs/reference/tidy_combine_distributions.md -------------------------------------------------------------------------------- /docs/reference/tidy_combined_autoplot-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spsanderson/TidyDensity/HEAD/docs/reference/tidy_combined_autoplot-1.png -------------------------------------------------------------------------------- /docs/reference/tidy_combined_autoplot-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spsanderson/TidyDensity/HEAD/docs/reference/tidy_combined_autoplot-2.png -------------------------------------------------------------------------------- /docs/reference/tidy_combined_autoplot.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spsanderson/TidyDensity/HEAD/docs/reference/tidy_combined_autoplot.html -------------------------------------------------------------------------------- /docs/reference/tidy_combined_autoplot.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spsanderson/TidyDensity/HEAD/docs/reference/tidy_combined_autoplot.md -------------------------------------------------------------------------------- /docs/reference/tidy_distribution_comparison.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spsanderson/TidyDensity/HEAD/docs/reference/tidy_distribution_comparison.html -------------------------------------------------------------------------------- /docs/reference/tidy_distribution_comparison.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spsanderson/TidyDensity/HEAD/docs/reference/tidy_distribution_comparison.md -------------------------------------------------------------------------------- /docs/reference/tidy_distribution_summary_tbl.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spsanderson/TidyDensity/HEAD/docs/reference/tidy_distribution_summary_tbl.html -------------------------------------------------------------------------------- /docs/reference/tidy_distribution_summary_tbl.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spsanderson/TidyDensity/HEAD/docs/reference/tidy_distribution_summary_tbl.md -------------------------------------------------------------------------------- /docs/reference/tidy_empirical.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spsanderson/TidyDensity/HEAD/docs/reference/tidy_empirical.html -------------------------------------------------------------------------------- /docs/reference/tidy_empirical.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spsanderson/TidyDensity/HEAD/docs/reference/tidy_empirical.md -------------------------------------------------------------------------------- /docs/reference/tidy_exponential.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spsanderson/TidyDensity/HEAD/docs/reference/tidy_exponential.html -------------------------------------------------------------------------------- /docs/reference/tidy_exponential.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spsanderson/TidyDensity/HEAD/docs/reference/tidy_exponential.md -------------------------------------------------------------------------------- /docs/reference/tidy_f.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spsanderson/TidyDensity/HEAD/docs/reference/tidy_f.html -------------------------------------------------------------------------------- /docs/reference/tidy_f.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spsanderson/TidyDensity/HEAD/docs/reference/tidy_f.md -------------------------------------------------------------------------------- /docs/reference/tidy_four_autoplot-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spsanderson/TidyDensity/HEAD/docs/reference/tidy_four_autoplot-1.png -------------------------------------------------------------------------------- /docs/reference/tidy_four_autoplot.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spsanderson/TidyDensity/HEAD/docs/reference/tidy_four_autoplot.html -------------------------------------------------------------------------------- /docs/reference/tidy_four_autoplot.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spsanderson/TidyDensity/HEAD/docs/reference/tidy_four_autoplot.md -------------------------------------------------------------------------------- /docs/reference/tidy_gamma.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spsanderson/TidyDensity/HEAD/docs/reference/tidy_gamma.html -------------------------------------------------------------------------------- /docs/reference/tidy_gamma.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spsanderson/TidyDensity/HEAD/docs/reference/tidy_gamma.md -------------------------------------------------------------------------------- /docs/reference/tidy_generalized_beta.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spsanderson/TidyDensity/HEAD/docs/reference/tidy_generalized_beta.html -------------------------------------------------------------------------------- /docs/reference/tidy_generalized_beta.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spsanderson/TidyDensity/HEAD/docs/reference/tidy_generalized_beta.md -------------------------------------------------------------------------------- /docs/reference/tidy_generalized_pareto.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spsanderson/TidyDensity/HEAD/docs/reference/tidy_generalized_pareto.html -------------------------------------------------------------------------------- /docs/reference/tidy_generalized_pareto.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spsanderson/TidyDensity/HEAD/docs/reference/tidy_generalized_pareto.md -------------------------------------------------------------------------------- /docs/reference/tidy_geometric.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spsanderson/TidyDensity/HEAD/docs/reference/tidy_geometric.html -------------------------------------------------------------------------------- /docs/reference/tidy_geometric.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spsanderson/TidyDensity/HEAD/docs/reference/tidy_geometric.md -------------------------------------------------------------------------------- /docs/reference/tidy_hypergeometric.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spsanderson/TidyDensity/HEAD/docs/reference/tidy_hypergeometric.html -------------------------------------------------------------------------------- /docs/reference/tidy_hypergeometric.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spsanderson/TidyDensity/HEAD/docs/reference/tidy_hypergeometric.md -------------------------------------------------------------------------------- /docs/reference/tidy_inverse_burr.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spsanderson/TidyDensity/HEAD/docs/reference/tidy_inverse_burr.html -------------------------------------------------------------------------------- /docs/reference/tidy_inverse_burr.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spsanderson/TidyDensity/HEAD/docs/reference/tidy_inverse_burr.md -------------------------------------------------------------------------------- /docs/reference/tidy_inverse_exponential.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spsanderson/TidyDensity/HEAD/docs/reference/tidy_inverse_exponential.html -------------------------------------------------------------------------------- /docs/reference/tidy_inverse_exponential.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spsanderson/TidyDensity/HEAD/docs/reference/tidy_inverse_exponential.md -------------------------------------------------------------------------------- /docs/reference/tidy_inverse_gamma.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spsanderson/TidyDensity/HEAD/docs/reference/tidy_inverse_gamma.html -------------------------------------------------------------------------------- /docs/reference/tidy_inverse_gamma.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spsanderson/TidyDensity/HEAD/docs/reference/tidy_inverse_gamma.md -------------------------------------------------------------------------------- /docs/reference/tidy_inverse_normal.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spsanderson/TidyDensity/HEAD/docs/reference/tidy_inverse_normal.html -------------------------------------------------------------------------------- /docs/reference/tidy_inverse_normal.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spsanderson/TidyDensity/HEAD/docs/reference/tidy_inverse_normal.md -------------------------------------------------------------------------------- /docs/reference/tidy_inverse_pareto.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spsanderson/TidyDensity/HEAD/docs/reference/tidy_inverse_pareto.html -------------------------------------------------------------------------------- /docs/reference/tidy_inverse_pareto.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spsanderson/TidyDensity/HEAD/docs/reference/tidy_inverse_pareto.md -------------------------------------------------------------------------------- /docs/reference/tidy_inverse_weibull.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spsanderson/TidyDensity/HEAD/docs/reference/tidy_inverse_weibull.html -------------------------------------------------------------------------------- /docs/reference/tidy_inverse_weibull.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spsanderson/TidyDensity/HEAD/docs/reference/tidy_inverse_weibull.md -------------------------------------------------------------------------------- /docs/reference/tidy_kurtosis_vec.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spsanderson/TidyDensity/HEAD/docs/reference/tidy_kurtosis_vec.html -------------------------------------------------------------------------------- /docs/reference/tidy_kurtosis_vec.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spsanderson/TidyDensity/HEAD/docs/reference/tidy_kurtosis_vec.md -------------------------------------------------------------------------------- /docs/reference/tidy_logisitc.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spsanderson/TidyDensity/HEAD/docs/reference/tidy_logisitc.html -------------------------------------------------------------------------------- /docs/reference/tidy_logistic.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spsanderson/TidyDensity/HEAD/docs/reference/tidy_logistic.html -------------------------------------------------------------------------------- /docs/reference/tidy_logistic.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spsanderson/TidyDensity/HEAD/docs/reference/tidy_logistic.md -------------------------------------------------------------------------------- /docs/reference/tidy_lognormal.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spsanderson/TidyDensity/HEAD/docs/reference/tidy_lognormal.html -------------------------------------------------------------------------------- /docs/reference/tidy_lognormal.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spsanderson/TidyDensity/HEAD/docs/reference/tidy_lognormal.md -------------------------------------------------------------------------------- /docs/reference/tidy_mcmc_sampling-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spsanderson/TidyDensity/HEAD/docs/reference/tidy_mcmc_sampling-1.png -------------------------------------------------------------------------------- /docs/reference/tidy_mcmc_sampling.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spsanderson/TidyDensity/HEAD/docs/reference/tidy_mcmc_sampling.html -------------------------------------------------------------------------------- /docs/reference/tidy_mcmc_sampling.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spsanderson/TidyDensity/HEAD/docs/reference/tidy_mcmc_sampling.md -------------------------------------------------------------------------------- /docs/reference/tidy_mixture_density-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spsanderson/TidyDensity/HEAD/docs/reference/tidy_mixture_density-1.png -------------------------------------------------------------------------------- /docs/reference/tidy_mixture_density-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spsanderson/TidyDensity/HEAD/docs/reference/tidy_mixture_density-2.png -------------------------------------------------------------------------------- /docs/reference/tidy_mixture_density.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spsanderson/TidyDensity/HEAD/docs/reference/tidy_mixture_density.html -------------------------------------------------------------------------------- /docs/reference/tidy_mixture_density.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spsanderson/TidyDensity/HEAD/docs/reference/tidy_mixture_density.md -------------------------------------------------------------------------------- /docs/reference/tidy_multi_dist.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spsanderson/TidyDensity/HEAD/docs/reference/tidy_multi_dist.html -------------------------------------------------------------------------------- /docs/reference/tidy_multi_dist_autoplot-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spsanderson/TidyDensity/HEAD/docs/reference/tidy_multi_dist_autoplot-1.png -------------------------------------------------------------------------------- /docs/reference/tidy_multi_dist_autoplot-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spsanderson/TidyDensity/HEAD/docs/reference/tidy_multi_dist_autoplot-2.png -------------------------------------------------------------------------------- /docs/reference/tidy_multi_dist_autoplot.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spsanderson/TidyDensity/HEAD/docs/reference/tidy_multi_dist_autoplot.html -------------------------------------------------------------------------------- /docs/reference/tidy_multi_dist_autoplot.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spsanderson/TidyDensity/HEAD/docs/reference/tidy_multi_dist_autoplot.md -------------------------------------------------------------------------------- /docs/reference/tidy_multi_single_dist.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spsanderson/TidyDensity/HEAD/docs/reference/tidy_multi_single_dist.html -------------------------------------------------------------------------------- /docs/reference/tidy_multi_single_dist.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spsanderson/TidyDensity/HEAD/docs/reference/tidy_multi_single_dist.md -------------------------------------------------------------------------------- /docs/reference/tidy_negative_binomial.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spsanderson/TidyDensity/HEAD/docs/reference/tidy_negative_binomial.html -------------------------------------------------------------------------------- /docs/reference/tidy_negative_binomial.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spsanderson/TidyDensity/HEAD/docs/reference/tidy_negative_binomial.md -------------------------------------------------------------------------------- /docs/reference/tidy_normal.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spsanderson/TidyDensity/HEAD/docs/reference/tidy_normal.html -------------------------------------------------------------------------------- /docs/reference/tidy_normal.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spsanderson/TidyDensity/HEAD/docs/reference/tidy_normal.md -------------------------------------------------------------------------------- /docs/reference/tidy_paralogistic.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spsanderson/TidyDensity/HEAD/docs/reference/tidy_paralogistic.html -------------------------------------------------------------------------------- /docs/reference/tidy_paralogistic.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spsanderson/TidyDensity/HEAD/docs/reference/tidy_paralogistic.md -------------------------------------------------------------------------------- /docs/reference/tidy_pareto.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spsanderson/TidyDensity/HEAD/docs/reference/tidy_pareto.html -------------------------------------------------------------------------------- /docs/reference/tidy_pareto.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spsanderson/TidyDensity/HEAD/docs/reference/tidy_pareto.md -------------------------------------------------------------------------------- /docs/reference/tidy_pareto1.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spsanderson/TidyDensity/HEAD/docs/reference/tidy_pareto1.html -------------------------------------------------------------------------------- /docs/reference/tidy_pareto1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spsanderson/TidyDensity/HEAD/docs/reference/tidy_pareto1.md -------------------------------------------------------------------------------- /docs/reference/tidy_poisson.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spsanderson/TidyDensity/HEAD/docs/reference/tidy_poisson.html -------------------------------------------------------------------------------- /docs/reference/tidy_poisson.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spsanderson/TidyDensity/HEAD/docs/reference/tidy_poisson.md -------------------------------------------------------------------------------- /docs/reference/tidy_random_walk.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spsanderson/TidyDensity/HEAD/docs/reference/tidy_random_walk.html -------------------------------------------------------------------------------- /docs/reference/tidy_random_walk.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spsanderson/TidyDensity/HEAD/docs/reference/tidy_random_walk.md -------------------------------------------------------------------------------- /docs/reference/tidy_random_walk_autoplot-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spsanderson/TidyDensity/HEAD/docs/reference/tidy_random_walk_autoplot-1.png -------------------------------------------------------------------------------- /docs/reference/tidy_random_walk_autoplot-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spsanderson/TidyDensity/HEAD/docs/reference/tidy_random_walk_autoplot-2.png -------------------------------------------------------------------------------- /docs/reference/tidy_random_walk_autoplot.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spsanderson/TidyDensity/HEAD/docs/reference/tidy_random_walk_autoplot.html -------------------------------------------------------------------------------- /docs/reference/tidy_random_walk_autoplot.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spsanderson/TidyDensity/HEAD/docs/reference/tidy_random_walk_autoplot.md -------------------------------------------------------------------------------- /docs/reference/tidy_range_statistic.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spsanderson/TidyDensity/HEAD/docs/reference/tidy_range_statistic.html -------------------------------------------------------------------------------- /docs/reference/tidy_range_statistic.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spsanderson/TidyDensity/HEAD/docs/reference/tidy_range_statistic.md -------------------------------------------------------------------------------- /docs/reference/tidy_rnorm.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spsanderson/TidyDensity/HEAD/docs/reference/tidy_rnorm.html -------------------------------------------------------------------------------- /docs/reference/tidy_scale_zero_one_vec-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spsanderson/TidyDensity/HEAD/docs/reference/tidy_scale_zero_one_vec-1.png -------------------------------------------------------------------------------- /docs/reference/tidy_scale_zero_one_vec.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spsanderson/TidyDensity/HEAD/docs/reference/tidy_scale_zero_one_vec.html -------------------------------------------------------------------------------- /docs/reference/tidy_scale_zero_one_vec.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spsanderson/TidyDensity/HEAD/docs/reference/tidy_scale_zero_one_vec.md -------------------------------------------------------------------------------- /docs/reference/tidy_skewness_vec.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spsanderson/TidyDensity/HEAD/docs/reference/tidy_skewness_vec.html -------------------------------------------------------------------------------- /docs/reference/tidy_skewness_vec.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spsanderson/TidyDensity/HEAD/docs/reference/tidy_skewness_vec.md -------------------------------------------------------------------------------- /docs/reference/tidy_stat_tbl.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spsanderson/TidyDensity/HEAD/docs/reference/tidy_stat_tbl.html -------------------------------------------------------------------------------- /docs/reference/tidy_stat_tbl.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spsanderson/TidyDensity/HEAD/docs/reference/tidy_stat_tbl.md -------------------------------------------------------------------------------- /docs/reference/tidy_t.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spsanderson/TidyDensity/HEAD/docs/reference/tidy_t.html -------------------------------------------------------------------------------- /docs/reference/tidy_t.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spsanderson/TidyDensity/HEAD/docs/reference/tidy_t.md -------------------------------------------------------------------------------- /docs/reference/tidy_triangular.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spsanderson/TidyDensity/HEAD/docs/reference/tidy_triangular.html -------------------------------------------------------------------------------- /docs/reference/tidy_triangular.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spsanderson/TidyDensity/HEAD/docs/reference/tidy_triangular.md -------------------------------------------------------------------------------- /docs/reference/tidy_uniform.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spsanderson/TidyDensity/HEAD/docs/reference/tidy_uniform.html -------------------------------------------------------------------------------- /docs/reference/tidy_uniform.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spsanderson/TidyDensity/HEAD/docs/reference/tidy_uniform.md -------------------------------------------------------------------------------- /docs/reference/tidy_weibull.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spsanderson/TidyDensity/HEAD/docs/reference/tidy_weibull.html -------------------------------------------------------------------------------- /docs/reference/tidy_weibull.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spsanderson/TidyDensity/HEAD/docs/reference/tidy_weibull.md -------------------------------------------------------------------------------- /docs/reference/tidy_zero_truncated_binomial.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spsanderson/TidyDensity/HEAD/docs/reference/tidy_zero_truncated_binomial.html -------------------------------------------------------------------------------- /docs/reference/tidy_zero_truncated_binomial.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spsanderson/TidyDensity/HEAD/docs/reference/tidy_zero_truncated_binomial.md -------------------------------------------------------------------------------- /docs/reference/tidy_zero_truncated_geometric.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spsanderson/TidyDensity/HEAD/docs/reference/tidy_zero_truncated_geometric.html -------------------------------------------------------------------------------- /docs/reference/tidy_zero_truncated_geometric.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spsanderson/TidyDensity/HEAD/docs/reference/tidy_zero_truncated_geometric.md -------------------------------------------------------------------------------- /docs/reference/tidy_zero_truncated_poisson.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spsanderson/TidyDensity/HEAD/docs/reference/tidy_zero_truncated_poisson.html -------------------------------------------------------------------------------- /docs/reference/tidy_zero_truncated_poisson.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spsanderson/TidyDensity/HEAD/docs/reference/tidy_zero_truncated_poisson.md -------------------------------------------------------------------------------- /docs/reference/tidyeval.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spsanderson/TidyDensity/HEAD/docs/reference/tidyeval.html -------------------------------------------------------------------------------- /docs/reference/tidyeval.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spsanderson/TidyDensity/HEAD/docs/reference/tidyeval.md -------------------------------------------------------------------------------- /docs/reference/triangle_plot-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spsanderson/TidyDensity/HEAD/docs/reference/triangle_plot-1.png -------------------------------------------------------------------------------- /docs/reference/triangle_plot.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spsanderson/TidyDensity/HEAD/docs/reference/triangle_plot.html -------------------------------------------------------------------------------- /docs/reference/triangle_plot.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spsanderson/TidyDensity/HEAD/docs/reference/triangle_plot.md -------------------------------------------------------------------------------- /docs/reference/util_bernoulli_param_estimate-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spsanderson/TidyDensity/HEAD/docs/reference/util_bernoulli_param_estimate-1.png -------------------------------------------------------------------------------- /docs/reference/util_bernoulli_param_estimate.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spsanderson/TidyDensity/HEAD/docs/reference/util_bernoulli_param_estimate.html -------------------------------------------------------------------------------- /docs/reference/util_bernoulli_param_estimate.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spsanderson/TidyDensity/HEAD/docs/reference/util_bernoulli_param_estimate.md -------------------------------------------------------------------------------- /docs/reference/util_bernoulli_stats_tbl.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spsanderson/TidyDensity/HEAD/docs/reference/util_bernoulli_stats_tbl.html -------------------------------------------------------------------------------- /docs/reference/util_bernoulli_stats_tbl.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spsanderson/TidyDensity/HEAD/docs/reference/util_bernoulli_stats_tbl.md -------------------------------------------------------------------------------- /docs/reference/util_beta_aic.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spsanderson/TidyDensity/HEAD/docs/reference/util_beta_aic.html -------------------------------------------------------------------------------- /docs/reference/util_beta_aic.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spsanderson/TidyDensity/HEAD/docs/reference/util_beta_aic.md -------------------------------------------------------------------------------- /docs/reference/util_beta_param_estimate-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spsanderson/TidyDensity/HEAD/docs/reference/util_beta_param_estimate-1.png -------------------------------------------------------------------------------- /docs/reference/util_beta_param_estimate.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spsanderson/TidyDensity/HEAD/docs/reference/util_beta_param_estimate.html -------------------------------------------------------------------------------- /docs/reference/util_beta_param_estimate.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spsanderson/TidyDensity/HEAD/docs/reference/util_beta_param_estimate.md -------------------------------------------------------------------------------- /docs/reference/util_beta_stats_tbl.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spsanderson/TidyDensity/HEAD/docs/reference/util_beta_stats_tbl.html -------------------------------------------------------------------------------- /docs/reference/util_beta_stats_tbl.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spsanderson/TidyDensity/HEAD/docs/reference/util_beta_stats_tbl.md -------------------------------------------------------------------------------- /docs/reference/util_binomial_aic.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spsanderson/TidyDensity/HEAD/docs/reference/util_binomial_aic.html -------------------------------------------------------------------------------- /docs/reference/util_binomial_aic.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spsanderson/TidyDensity/HEAD/docs/reference/util_binomial_aic.md -------------------------------------------------------------------------------- /docs/reference/util_binomial_param_estimate-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spsanderson/TidyDensity/HEAD/docs/reference/util_binomial_param_estimate-1.png -------------------------------------------------------------------------------- /docs/reference/util_binomial_param_estimate.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spsanderson/TidyDensity/HEAD/docs/reference/util_binomial_param_estimate.html -------------------------------------------------------------------------------- /docs/reference/util_binomial_param_estimate.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spsanderson/TidyDensity/HEAD/docs/reference/util_binomial_param_estimate.md -------------------------------------------------------------------------------- /docs/reference/util_binomial_stats_tbl.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spsanderson/TidyDensity/HEAD/docs/reference/util_binomial_stats_tbl.html -------------------------------------------------------------------------------- /docs/reference/util_binomial_stats_tbl.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spsanderson/TidyDensity/HEAD/docs/reference/util_binomial_stats_tbl.md -------------------------------------------------------------------------------- /docs/reference/util_burr_param_estimate-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spsanderson/TidyDensity/HEAD/docs/reference/util_burr_param_estimate-1.png -------------------------------------------------------------------------------- /docs/reference/util_burr_param_estimate.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spsanderson/TidyDensity/HEAD/docs/reference/util_burr_param_estimate.html -------------------------------------------------------------------------------- /docs/reference/util_burr_param_estimate.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spsanderson/TidyDensity/HEAD/docs/reference/util_burr_param_estimate.md -------------------------------------------------------------------------------- /docs/reference/util_burr_stats_tbl.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spsanderson/TidyDensity/HEAD/docs/reference/util_burr_stats_tbl.html -------------------------------------------------------------------------------- /docs/reference/util_burr_stats_tbl.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spsanderson/TidyDensity/HEAD/docs/reference/util_burr_stats_tbl.md -------------------------------------------------------------------------------- /docs/reference/util_cauchy_aic.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spsanderson/TidyDensity/HEAD/docs/reference/util_cauchy_aic.html -------------------------------------------------------------------------------- /docs/reference/util_cauchy_aic.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spsanderson/TidyDensity/HEAD/docs/reference/util_cauchy_aic.md -------------------------------------------------------------------------------- /docs/reference/util_cauchy_param_estimate-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spsanderson/TidyDensity/HEAD/docs/reference/util_cauchy_param_estimate-1.png -------------------------------------------------------------------------------- /docs/reference/util_cauchy_param_estimate.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spsanderson/TidyDensity/HEAD/docs/reference/util_cauchy_param_estimate.html -------------------------------------------------------------------------------- /docs/reference/util_cauchy_param_estimate.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spsanderson/TidyDensity/HEAD/docs/reference/util_cauchy_param_estimate.md -------------------------------------------------------------------------------- /docs/reference/util_cauchy_stats_tbl.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spsanderson/TidyDensity/HEAD/docs/reference/util_cauchy_stats_tbl.html -------------------------------------------------------------------------------- /docs/reference/util_cauchy_stats_tbl.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spsanderson/TidyDensity/HEAD/docs/reference/util_cauchy_stats_tbl.md -------------------------------------------------------------------------------- /docs/reference/util_chisq_aic.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spsanderson/TidyDensity/HEAD/docs/reference/util_chisq_aic.html -------------------------------------------------------------------------------- /docs/reference/util_chisq_aic.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spsanderson/TidyDensity/HEAD/docs/reference/util_chisq_aic.md -------------------------------------------------------------------------------- /docs/reference/util_chisquare_param_estimate-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spsanderson/TidyDensity/HEAD/docs/reference/util_chisquare_param_estimate-1.png -------------------------------------------------------------------------------- /docs/reference/util_chisquare_param_estimate.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spsanderson/TidyDensity/HEAD/docs/reference/util_chisquare_param_estimate.html -------------------------------------------------------------------------------- /docs/reference/util_chisquare_param_estimate.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spsanderson/TidyDensity/HEAD/docs/reference/util_chisquare_param_estimate.md -------------------------------------------------------------------------------- /docs/reference/util_chisquare_stats_tbl.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spsanderson/TidyDensity/HEAD/docs/reference/util_chisquare_stats_tbl.html -------------------------------------------------------------------------------- /docs/reference/util_chisquare_stats_tbl.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spsanderson/TidyDensity/HEAD/docs/reference/util_chisquare_stats_tbl.md -------------------------------------------------------------------------------- /docs/reference/util_exponential_aic.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spsanderson/TidyDensity/HEAD/docs/reference/util_exponential_aic.html -------------------------------------------------------------------------------- /docs/reference/util_exponential_aic.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spsanderson/TidyDensity/HEAD/docs/reference/util_exponential_aic.md -------------------------------------------------------------------------------- /docs/reference/util_exponential_param_estimate-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spsanderson/TidyDensity/HEAD/docs/reference/util_exponential_param_estimate-1.png -------------------------------------------------------------------------------- /docs/reference/util_exponential_param_estimate.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spsanderson/TidyDensity/HEAD/docs/reference/util_exponential_param_estimate.html -------------------------------------------------------------------------------- /docs/reference/util_exponential_param_estimate.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spsanderson/TidyDensity/HEAD/docs/reference/util_exponential_param_estimate.md -------------------------------------------------------------------------------- /docs/reference/util_exponential_stats_tbl.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spsanderson/TidyDensity/HEAD/docs/reference/util_exponential_stats_tbl.html -------------------------------------------------------------------------------- /docs/reference/util_exponential_stats_tbl.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spsanderson/TidyDensity/HEAD/docs/reference/util_exponential_stats_tbl.md -------------------------------------------------------------------------------- /docs/reference/util_f_aic.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spsanderson/TidyDensity/HEAD/docs/reference/util_f_aic.html -------------------------------------------------------------------------------- /docs/reference/util_f_aic.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spsanderson/TidyDensity/HEAD/docs/reference/util_f_aic.md -------------------------------------------------------------------------------- /docs/reference/util_f_param_estimate-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spsanderson/TidyDensity/HEAD/docs/reference/util_f_param_estimate-1.png -------------------------------------------------------------------------------- /docs/reference/util_f_param_estimate.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spsanderson/TidyDensity/HEAD/docs/reference/util_f_param_estimate.html -------------------------------------------------------------------------------- /docs/reference/util_f_param_estimate.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spsanderson/TidyDensity/HEAD/docs/reference/util_f_param_estimate.md -------------------------------------------------------------------------------- /docs/reference/util_f_stats_tbl.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spsanderson/TidyDensity/HEAD/docs/reference/util_f_stats_tbl.html -------------------------------------------------------------------------------- /docs/reference/util_f_stats_tbl.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spsanderson/TidyDensity/HEAD/docs/reference/util_f_stats_tbl.md -------------------------------------------------------------------------------- /docs/reference/util_gamma_aic.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spsanderson/TidyDensity/HEAD/docs/reference/util_gamma_aic.html -------------------------------------------------------------------------------- /docs/reference/util_gamma_aic.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spsanderson/TidyDensity/HEAD/docs/reference/util_gamma_aic.md -------------------------------------------------------------------------------- /docs/reference/util_gamma_param_estimate-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spsanderson/TidyDensity/HEAD/docs/reference/util_gamma_param_estimate-1.png -------------------------------------------------------------------------------- /docs/reference/util_gamma_param_estimate.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spsanderson/TidyDensity/HEAD/docs/reference/util_gamma_param_estimate.html -------------------------------------------------------------------------------- /docs/reference/util_gamma_param_estimate.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spsanderson/TidyDensity/HEAD/docs/reference/util_gamma_param_estimate.md -------------------------------------------------------------------------------- /docs/reference/util_gamma_stats_tbl.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spsanderson/TidyDensity/HEAD/docs/reference/util_gamma_stats_tbl.html -------------------------------------------------------------------------------- /docs/reference/util_gamma_stats_tbl.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spsanderson/TidyDensity/HEAD/docs/reference/util_gamma_stats_tbl.md -------------------------------------------------------------------------------- /docs/reference/util_generalized_beta_aic.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spsanderson/TidyDensity/HEAD/docs/reference/util_generalized_beta_aic.html -------------------------------------------------------------------------------- /docs/reference/util_generalized_beta_aic.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spsanderson/TidyDensity/HEAD/docs/reference/util_generalized_beta_aic.md -------------------------------------------------------------------------------- /docs/reference/util_generalized_beta_stats_tbl.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spsanderson/TidyDensity/HEAD/docs/reference/util_generalized_beta_stats_tbl.html -------------------------------------------------------------------------------- /docs/reference/util_generalized_beta_stats_tbl.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spsanderson/TidyDensity/HEAD/docs/reference/util_generalized_beta_stats_tbl.md -------------------------------------------------------------------------------- /docs/reference/util_generalized_pareto_aic.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spsanderson/TidyDensity/HEAD/docs/reference/util_generalized_pareto_aic.html -------------------------------------------------------------------------------- /docs/reference/util_generalized_pareto_aic.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spsanderson/TidyDensity/HEAD/docs/reference/util_generalized_pareto_aic.md -------------------------------------------------------------------------------- /docs/reference/util_generalized_pareto_stats_tbl.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spsanderson/TidyDensity/HEAD/docs/reference/util_generalized_pareto_stats_tbl.md -------------------------------------------------------------------------------- /docs/reference/util_geometric_aic.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spsanderson/TidyDensity/HEAD/docs/reference/util_geometric_aic.html -------------------------------------------------------------------------------- /docs/reference/util_geometric_aic.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spsanderson/TidyDensity/HEAD/docs/reference/util_geometric_aic.md -------------------------------------------------------------------------------- /docs/reference/util_geometric_param_estimate-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spsanderson/TidyDensity/HEAD/docs/reference/util_geometric_param_estimate-1.png -------------------------------------------------------------------------------- /docs/reference/util_geometric_param_estimate.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spsanderson/TidyDensity/HEAD/docs/reference/util_geometric_param_estimate.html -------------------------------------------------------------------------------- /docs/reference/util_geometric_param_estimate.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spsanderson/TidyDensity/HEAD/docs/reference/util_geometric_param_estimate.md -------------------------------------------------------------------------------- /docs/reference/util_geometric_stats_tbl.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spsanderson/TidyDensity/HEAD/docs/reference/util_geometric_stats_tbl.html -------------------------------------------------------------------------------- /docs/reference/util_geometric_stats_tbl.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spsanderson/TidyDensity/HEAD/docs/reference/util_geometric_stats_tbl.md -------------------------------------------------------------------------------- /docs/reference/util_hypergeometric_aic.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spsanderson/TidyDensity/HEAD/docs/reference/util_hypergeometric_aic.html -------------------------------------------------------------------------------- /docs/reference/util_hypergeometric_aic.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spsanderson/TidyDensity/HEAD/docs/reference/util_hypergeometric_aic.md -------------------------------------------------------------------------------- /docs/reference/util_hypergeometric_param_estimate.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spsanderson/TidyDensity/HEAD/docs/reference/util_hypergeometric_param_estimate.md -------------------------------------------------------------------------------- /docs/reference/util_hypergeometric_stats_tbl.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spsanderson/TidyDensity/HEAD/docs/reference/util_hypergeometric_stats_tbl.html -------------------------------------------------------------------------------- /docs/reference/util_hypergeometric_stats_tbl.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spsanderson/TidyDensity/HEAD/docs/reference/util_hypergeometric_stats_tbl.md -------------------------------------------------------------------------------- /docs/reference/util_inverse_burr_aic.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spsanderson/TidyDensity/HEAD/docs/reference/util_inverse_burr_aic.html -------------------------------------------------------------------------------- /docs/reference/util_inverse_burr_aic.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spsanderson/TidyDensity/HEAD/docs/reference/util_inverse_burr_aic.md -------------------------------------------------------------------------------- /docs/reference/util_inverse_burr_param_estimate.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spsanderson/TidyDensity/HEAD/docs/reference/util_inverse_burr_param_estimate.html -------------------------------------------------------------------------------- /docs/reference/util_inverse_burr_param_estimate.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spsanderson/TidyDensity/HEAD/docs/reference/util_inverse_burr_param_estimate.md -------------------------------------------------------------------------------- /docs/reference/util_inverse_burr_stats_tbl.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spsanderson/TidyDensity/HEAD/docs/reference/util_inverse_burr_stats_tbl.html -------------------------------------------------------------------------------- /docs/reference/util_inverse_burr_stats_tbl.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spsanderson/TidyDensity/HEAD/docs/reference/util_inverse_burr_stats_tbl.md -------------------------------------------------------------------------------- /docs/reference/util_inverse_pareto_aic.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spsanderson/TidyDensity/HEAD/docs/reference/util_inverse_pareto_aic.html -------------------------------------------------------------------------------- /docs/reference/util_inverse_pareto_aic.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spsanderson/TidyDensity/HEAD/docs/reference/util_inverse_pareto_aic.md -------------------------------------------------------------------------------- /docs/reference/util_inverse_pareto_param_estimate.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spsanderson/TidyDensity/HEAD/docs/reference/util_inverse_pareto_param_estimate.md -------------------------------------------------------------------------------- /docs/reference/util_inverse_pareto_stats_tbl.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spsanderson/TidyDensity/HEAD/docs/reference/util_inverse_pareto_stats_tbl.html -------------------------------------------------------------------------------- /docs/reference/util_inverse_pareto_stats_tbl.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spsanderson/TidyDensity/HEAD/docs/reference/util_inverse_pareto_stats_tbl.md -------------------------------------------------------------------------------- /docs/reference/util_inverse_weibull_aic.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spsanderson/TidyDensity/HEAD/docs/reference/util_inverse_weibull_aic.html -------------------------------------------------------------------------------- /docs/reference/util_inverse_weibull_aic.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spsanderson/TidyDensity/HEAD/docs/reference/util_inverse_weibull_aic.md -------------------------------------------------------------------------------- /docs/reference/util_inverse_weibull_stats_tbl.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spsanderson/TidyDensity/HEAD/docs/reference/util_inverse_weibull_stats_tbl.html -------------------------------------------------------------------------------- /docs/reference/util_inverse_weibull_stats_tbl.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spsanderson/TidyDensity/HEAD/docs/reference/util_inverse_weibull_stats_tbl.md -------------------------------------------------------------------------------- /docs/reference/util_invweibull_param_estimate-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spsanderson/TidyDensity/HEAD/docs/reference/util_invweibull_param_estimate-1.png -------------------------------------------------------------------------------- /docs/reference/util_invweibull_param_estimate.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spsanderson/TidyDensity/HEAD/docs/reference/util_invweibull_param_estimate.html -------------------------------------------------------------------------------- /docs/reference/util_invweibull_param_estimate.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spsanderson/TidyDensity/HEAD/docs/reference/util_invweibull_param_estimate.md -------------------------------------------------------------------------------- /docs/reference/util_logistic_aic.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spsanderson/TidyDensity/HEAD/docs/reference/util_logistic_aic.html -------------------------------------------------------------------------------- /docs/reference/util_logistic_aic.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spsanderson/TidyDensity/HEAD/docs/reference/util_logistic_aic.md -------------------------------------------------------------------------------- /docs/reference/util_logistic_param_estimate-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spsanderson/TidyDensity/HEAD/docs/reference/util_logistic_param_estimate-1.png -------------------------------------------------------------------------------- /docs/reference/util_logistic_param_estimate.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spsanderson/TidyDensity/HEAD/docs/reference/util_logistic_param_estimate.html -------------------------------------------------------------------------------- /docs/reference/util_logistic_param_estimate.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spsanderson/TidyDensity/HEAD/docs/reference/util_logistic_param_estimate.md -------------------------------------------------------------------------------- /docs/reference/util_logistic_stats_tbl.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spsanderson/TidyDensity/HEAD/docs/reference/util_logistic_stats_tbl.html -------------------------------------------------------------------------------- /docs/reference/util_logistic_stats_tbl.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spsanderson/TidyDensity/HEAD/docs/reference/util_logistic_stats_tbl.md -------------------------------------------------------------------------------- /docs/reference/util_lognormal_aic.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spsanderson/TidyDensity/HEAD/docs/reference/util_lognormal_aic.html -------------------------------------------------------------------------------- /docs/reference/util_lognormal_aic.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spsanderson/TidyDensity/HEAD/docs/reference/util_lognormal_aic.md -------------------------------------------------------------------------------- /docs/reference/util_lognormal_param_estimate-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spsanderson/TidyDensity/HEAD/docs/reference/util_lognormal_param_estimate-1.png -------------------------------------------------------------------------------- /docs/reference/util_lognormal_param_estimate.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spsanderson/TidyDensity/HEAD/docs/reference/util_lognormal_param_estimate.html -------------------------------------------------------------------------------- /docs/reference/util_lognormal_param_estimate.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spsanderson/TidyDensity/HEAD/docs/reference/util_lognormal_param_estimate.md -------------------------------------------------------------------------------- /docs/reference/util_lognormal_stats_tbl.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spsanderson/TidyDensity/HEAD/docs/reference/util_lognormal_stats_tbl.html -------------------------------------------------------------------------------- /docs/reference/util_lognormal_stats_tbl.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spsanderson/TidyDensity/HEAD/docs/reference/util_lognormal_stats_tbl.md -------------------------------------------------------------------------------- /docs/reference/util_negative_binomial_aic.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spsanderson/TidyDensity/HEAD/docs/reference/util_negative_binomial_aic.html -------------------------------------------------------------------------------- /docs/reference/util_negative_binomial_aic.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spsanderson/TidyDensity/HEAD/docs/reference/util_negative_binomial_aic.md -------------------------------------------------------------------------------- /docs/reference/util_negative_binomial_stats_tbl.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spsanderson/TidyDensity/HEAD/docs/reference/util_negative_binomial_stats_tbl.html -------------------------------------------------------------------------------- /docs/reference/util_negative_binomial_stats_tbl.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spsanderson/TidyDensity/HEAD/docs/reference/util_negative_binomial_stats_tbl.md -------------------------------------------------------------------------------- /docs/reference/util_normal_aic.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spsanderson/TidyDensity/HEAD/docs/reference/util_normal_aic.html -------------------------------------------------------------------------------- /docs/reference/util_normal_aic.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spsanderson/TidyDensity/HEAD/docs/reference/util_normal_aic.md -------------------------------------------------------------------------------- /docs/reference/util_normal_param_estimate-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spsanderson/TidyDensity/HEAD/docs/reference/util_normal_param_estimate-1.png -------------------------------------------------------------------------------- /docs/reference/util_normal_param_estimate.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spsanderson/TidyDensity/HEAD/docs/reference/util_normal_param_estimate.html -------------------------------------------------------------------------------- /docs/reference/util_normal_param_estimate.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spsanderson/TidyDensity/HEAD/docs/reference/util_normal_param_estimate.md -------------------------------------------------------------------------------- /docs/reference/util_normal_stats_tbl.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spsanderson/TidyDensity/HEAD/docs/reference/util_normal_stats_tbl.html -------------------------------------------------------------------------------- /docs/reference/util_normal_stats_tbl.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spsanderson/TidyDensity/HEAD/docs/reference/util_normal_stats_tbl.md -------------------------------------------------------------------------------- /docs/reference/util_paralogistic_aic.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spsanderson/TidyDensity/HEAD/docs/reference/util_paralogistic_aic.html -------------------------------------------------------------------------------- /docs/reference/util_paralogistic_aic.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spsanderson/TidyDensity/HEAD/docs/reference/util_paralogistic_aic.md -------------------------------------------------------------------------------- /docs/reference/util_paralogistic_param_estimate.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spsanderson/TidyDensity/HEAD/docs/reference/util_paralogistic_param_estimate.html -------------------------------------------------------------------------------- /docs/reference/util_paralogistic_param_estimate.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spsanderson/TidyDensity/HEAD/docs/reference/util_paralogistic_param_estimate.md -------------------------------------------------------------------------------- /docs/reference/util_paralogistic_stats_tbl.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spsanderson/TidyDensity/HEAD/docs/reference/util_paralogistic_stats_tbl.html -------------------------------------------------------------------------------- /docs/reference/util_paralogistic_stats_tbl.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spsanderson/TidyDensity/HEAD/docs/reference/util_paralogistic_stats_tbl.md -------------------------------------------------------------------------------- /docs/reference/util_pareto1_aic.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spsanderson/TidyDensity/HEAD/docs/reference/util_pareto1_aic.html -------------------------------------------------------------------------------- /docs/reference/util_pareto1_aic.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spsanderson/TidyDensity/HEAD/docs/reference/util_pareto1_aic.md -------------------------------------------------------------------------------- /docs/reference/util_pareto1_param_estimate-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spsanderson/TidyDensity/HEAD/docs/reference/util_pareto1_param_estimate-1.png -------------------------------------------------------------------------------- /docs/reference/util_pareto1_param_estimate.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spsanderson/TidyDensity/HEAD/docs/reference/util_pareto1_param_estimate.html -------------------------------------------------------------------------------- /docs/reference/util_pareto1_param_estimate.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spsanderson/TidyDensity/HEAD/docs/reference/util_pareto1_param_estimate.md -------------------------------------------------------------------------------- /docs/reference/util_pareto1_stats_tbl.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spsanderson/TidyDensity/HEAD/docs/reference/util_pareto1_stats_tbl.html -------------------------------------------------------------------------------- /docs/reference/util_pareto1_stats_tbl.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spsanderson/TidyDensity/HEAD/docs/reference/util_pareto1_stats_tbl.md -------------------------------------------------------------------------------- /docs/reference/util_pareto_aic.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spsanderson/TidyDensity/HEAD/docs/reference/util_pareto_aic.html -------------------------------------------------------------------------------- /docs/reference/util_pareto_aic.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spsanderson/TidyDensity/HEAD/docs/reference/util_pareto_aic.md -------------------------------------------------------------------------------- /docs/reference/util_pareto_estimate-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spsanderson/TidyDensity/HEAD/docs/reference/util_pareto_estimate-1.png -------------------------------------------------------------------------------- /docs/reference/util_pareto_estimate.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spsanderson/TidyDensity/HEAD/docs/reference/util_pareto_estimate.html -------------------------------------------------------------------------------- /docs/reference/util_pareto_param_estimate-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spsanderson/TidyDensity/HEAD/docs/reference/util_pareto_param_estimate-1.png -------------------------------------------------------------------------------- /docs/reference/util_pareto_param_estimate.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spsanderson/TidyDensity/HEAD/docs/reference/util_pareto_param_estimate.html -------------------------------------------------------------------------------- /docs/reference/util_pareto_param_estimate.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spsanderson/TidyDensity/HEAD/docs/reference/util_pareto_param_estimate.md -------------------------------------------------------------------------------- /docs/reference/util_pareto_stats_tbl.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spsanderson/TidyDensity/HEAD/docs/reference/util_pareto_stats_tbl.html -------------------------------------------------------------------------------- /docs/reference/util_pareto_stats_tbl.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spsanderson/TidyDensity/HEAD/docs/reference/util_pareto_stats_tbl.md -------------------------------------------------------------------------------- /docs/reference/util_poisson_aic.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spsanderson/TidyDensity/HEAD/docs/reference/util_poisson_aic.html -------------------------------------------------------------------------------- /docs/reference/util_poisson_aic.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spsanderson/TidyDensity/HEAD/docs/reference/util_poisson_aic.md -------------------------------------------------------------------------------- /docs/reference/util_poisson_param_estimate-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spsanderson/TidyDensity/HEAD/docs/reference/util_poisson_param_estimate-1.png -------------------------------------------------------------------------------- /docs/reference/util_poisson_param_estimate.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spsanderson/TidyDensity/HEAD/docs/reference/util_poisson_param_estimate.html -------------------------------------------------------------------------------- /docs/reference/util_poisson_param_estimate.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spsanderson/TidyDensity/HEAD/docs/reference/util_poisson_param_estimate.md -------------------------------------------------------------------------------- /docs/reference/util_poisson_stats_tbl.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spsanderson/TidyDensity/HEAD/docs/reference/util_poisson_stats_tbl.html -------------------------------------------------------------------------------- /docs/reference/util_poisson_stats_tbl.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spsanderson/TidyDensity/HEAD/docs/reference/util_poisson_stats_tbl.md -------------------------------------------------------------------------------- /docs/reference/util_rztnbinom_aic.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spsanderson/TidyDensity/HEAD/docs/reference/util_rztnbinom_aic.html -------------------------------------------------------------------------------- /docs/reference/util_rztnbinom_aic.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spsanderson/TidyDensity/HEAD/docs/reference/util_rztnbinom_aic.md -------------------------------------------------------------------------------- /docs/reference/util_t_aic.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spsanderson/TidyDensity/HEAD/docs/reference/util_t_aic.html -------------------------------------------------------------------------------- /docs/reference/util_t_aic.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spsanderson/TidyDensity/HEAD/docs/reference/util_t_aic.md -------------------------------------------------------------------------------- /docs/reference/util_t_param_estimate-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spsanderson/TidyDensity/HEAD/docs/reference/util_t_param_estimate-1.png -------------------------------------------------------------------------------- /docs/reference/util_t_param_estimate.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spsanderson/TidyDensity/HEAD/docs/reference/util_t_param_estimate.html -------------------------------------------------------------------------------- /docs/reference/util_t_param_estimate.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spsanderson/TidyDensity/HEAD/docs/reference/util_t_param_estimate.md -------------------------------------------------------------------------------- /docs/reference/util_t_stats_tbl.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spsanderson/TidyDensity/HEAD/docs/reference/util_t_stats_tbl.html -------------------------------------------------------------------------------- /docs/reference/util_t_stats_tbl.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spsanderson/TidyDensity/HEAD/docs/reference/util_t_stats_tbl.md -------------------------------------------------------------------------------- /docs/reference/util_triangular_aic.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spsanderson/TidyDensity/HEAD/docs/reference/util_triangular_aic.html -------------------------------------------------------------------------------- /docs/reference/util_triangular_aic.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spsanderson/TidyDensity/HEAD/docs/reference/util_triangular_aic.md -------------------------------------------------------------------------------- /docs/reference/util_triangular_param_estimate.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spsanderson/TidyDensity/HEAD/docs/reference/util_triangular_param_estimate.md -------------------------------------------------------------------------------- /docs/reference/util_triangular_stats_tbl.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spsanderson/TidyDensity/HEAD/docs/reference/util_triangular_stats_tbl.html -------------------------------------------------------------------------------- /docs/reference/util_triangular_stats_tbl.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spsanderson/TidyDensity/HEAD/docs/reference/util_triangular_stats_tbl.md -------------------------------------------------------------------------------- /docs/reference/util_uniform_aic.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spsanderson/TidyDensity/HEAD/docs/reference/util_uniform_aic.html -------------------------------------------------------------------------------- /docs/reference/util_uniform_aic.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spsanderson/TidyDensity/HEAD/docs/reference/util_uniform_aic.md -------------------------------------------------------------------------------- /docs/reference/util_uniform_param_estimate-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spsanderson/TidyDensity/HEAD/docs/reference/util_uniform_param_estimate-1.png -------------------------------------------------------------------------------- /docs/reference/util_uniform_param_estimate.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spsanderson/TidyDensity/HEAD/docs/reference/util_uniform_param_estimate.html -------------------------------------------------------------------------------- /docs/reference/util_uniform_param_estimate.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spsanderson/TidyDensity/HEAD/docs/reference/util_uniform_param_estimate.md -------------------------------------------------------------------------------- /docs/reference/util_uniform_stats_tbl.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spsanderson/TidyDensity/HEAD/docs/reference/util_uniform_stats_tbl.html -------------------------------------------------------------------------------- /docs/reference/util_uniform_stats_tbl.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spsanderson/TidyDensity/HEAD/docs/reference/util_uniform_stats_tbl.md -------------------------------------------------------------------------------- /docs/reference/util_weibull_aic.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spsanderson/TidyDensity/HEAD/docs/reference/util_weibull_aic.html -------------------------------------------------------------------------------- /docs/reference/util_weibull_aic.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spsanderson/TidyDensity/HEAD/docs/reference/util_weibull_aic.md -------------------------------------------------------------------------------- /docs/reference/util_weibull_param_estimate-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spsanderson/TidyDensity/HEAD/docs/reference/util_weibull_param_estimate-1.png -------------------------------------------------------------------------------- /docs/reference/util_weibull_param_estimate.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spsanderson/TidyDensity/HEAD/docs/reference/util_weibull_param_estimate.html -------------------------------------------------------------------------------- /docs/reference/util_weibull_param_estimate.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spsanderson/TidyDensity/HEAD/docs/reference/util_weibull_param_estimate.md -------------------------------------------------------------------------------- /docs/reference/util_weibull_stats_tbl.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spsanderson/TidyDensity/HEAD/docs/reference/util_weibull_stats_tbl.html -------------------------------------------------------------------------------- /docs/reference/util_weibull_stats_tbl.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spsanderson/TidyDensity/HEAD/docs/reference/util_weibull_stats_tbl.md -------------------------------------------------------------------------------- /docs/reference/util_zero_truncated_poisson_aic.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spsanderson/TidyDensity/HEAD/docs/reference/util_zero_truncated_poisson_aic.md -------------------------------------------------------------------------------- /docs/search.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spsanderson/TidyDensity/HEAD/docs/search.json -------------------------------------------------------------------------------- /docs/sitemap.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spsanderson/TidyDensity/HEAD/docs/sitemap.xml -------------------------------------------------------------------------------- /man/bootstrap_density_augment.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spsanderson/TidyDensity/HEAD/man/bootstrap_density_augment.Rd -------------------------------------------------------------------------------- /man/bootstrap_p_augment.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spsanderson/TidyDensity/HEAD/man/bootstrap_p_augment.Rd -------------------------------------------------------------------------------- /man/bootstrap_p_vec.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spsanderson/TidyDensity/HEAD/man/bootstrap_p_vec.Rd -------------------------------------------------------------------------------- /man/bootstrap_q_augment.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spsanderson/TidyDensity/HEAD/man/bootstrap_q_augment.Rd -------------------------------------------------------------------------------- /man/bootstrap_q_vec.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spsanderson/TidyDensity/HEAD/man/bootstrap_q_vec.Rd -------------------------------------------------------------------------------- /man/bootstrap_stat_plot.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spsanderson/TidyDensity/HEAD/man/bootstrap_stat_plot.Rd -------------------------------------------------------------------------------- /man/bootstrap_unnest_tbl.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spsanderson/TidyDensity/HEAD/man/bootstrap_unnest_tbl.Rd -------------------------------------------------------------------------------- /man/cgmean.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spsanderson/TidyDensity/HEAD/man/cgmean.Rd -------------------------------------------------------------------------------- /man/check_duplicate_rows.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spsanderson/TidyDensity/HEAD/man/check_duplicate_rows.Rd -------------------------------------------------------------------------------- /man/chmean.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spsanderson/TidyDensity/HEAD/man/chmean.Rd -------------------------------------------------------------------------------- /man/ci_hi.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spsanderson/TidyDensity/HEAD/man/ci_hi.Rd -------------------------------------------------------------------------------- /man/ci_lo.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spsanderson/TidyDensity/HEAD/man/ci_lo.Rd -------------------------------------------------------------------------------- /man/ckurtosis.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spsanderson/TidyDensity/HEAD/man/ckurtosis.Rd -------------------------------------------------------------------------------- /man/cmean.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spsanderson/TidyDensity/HEAD/man/cmean.Rd -------------------------------------------------------------------------------- /man/cmedian.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spsanderson/TidyDensity/HEAD/man/cmedian.Rd -------------------------------------------------------------------------------- /man/color_blind.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spsanderson/TidyDensity/HEAD/man/color_blind.Rd -------------------------------------------------------------------------------- /man/convert_to_ts.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spsanderson/TidyDensity/HEAD/man/convert_to_ts.Rd -------------------------------------------------------------------------------- /man/csd.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spsanderson/TidyDensity/HEAD/man/csd.Rd -------------------------------------------------------------------------------- /man/cskewness.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spsanderson/TidyDensity/HEAD/man/cskewness.Rd -------------------------------------------------------------------------------- /man/cvar.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spsanderson/TidyDensity/HEAD/man/cvar.Rd -------------------------------------------------------------------------------- /man/dist_type_extractor.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spsanderson/TidyDensity/HEAD/man/dist_type_extractor.Rd -------------------------------------------------------------------------------- /man/figures/README-plot_density-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spsanderson/TidyDensity/HEAD/man/figures/README-plot_density-1.png -------------------------------------------------------------------------------- /man/figures/README-plot_density-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spsanderson/TidyDensity/HEAD/man/figures/README-plot_density-2.png -------------------------------------------------------------------------------- /man/figures/README-plot_density-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spsanderson/TidyDensity/HEAD/man/figures/README-plot_density-3.png -------------------------------------------------------------------------------- /man/figures/README-plot_density-4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spsanderson/TidyDensity/HEAD/man/figures/README-plot_density-4.png -------------------------------------------------------------------------------- /man/figures/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spsanderson/TidyDensity/HEAD/man/figures/logo.png -------------------------------------------------------------------------------- /man/pipe.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spsanderson/TidyDensity/HEAD/man/pipe.Rd -------------------------------------------------------------------------------- /man/quantile_normalize.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spsanderson/TidyDensity/HEAD/man/quantile_normalize.Rd -------------------------------------------------------------------------------- /man/td_scale_color_colorblind.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spsanderson/TidyDensity/HEAD/man/td_scale_color_colorblind.Rd -------------------------------------------------------------------------------- /man/td_scale_fill_colorblind.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spsanderson/TidyDensity/HEAD/man/td_scale_fill_colorblind.Rd -------------------------------------------------------------------------------- /man/tidy_autoplot.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spsanderson/TidyDensity/HEAD/man/tidy_autoplot.Rd -------------------------------------------------------------------------------- /man/tidy_bernoulli.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spsanderson/TidyDensity/HEAD/man/tidy_bernoulli.Rd -------------------------------------------------------------------------------- /man/tidy_beta.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spsanderson/TidyDensity/HEAD/man/tidy_beta.Rd -------------------------------------------------------------------------------- /man/tidy_binomial.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spsanderson/TidyDensity/HEAD/man/tidy_binomial.Rd -------------------------------------------------------------------------------- /man/tidy_bootstrap.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spsanderson/TidyDensity/HEAD/man/tidy_bootstrap.Rd -------------------------------------------------------------------------------- /man/tidy_burr.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spsanderson/TidyDensity/HEAD/man/tidy_burr.Rd -------------------------------------------------------------------------------- /man/tidy_cauchy.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spsanderson/TidyDensity/HEAD/man/tidy_cauchy.Rd -------------------------------------------------------------------------------- /man/tidy_chisquare.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spsanderson/TidyDensity/HEAD/man/tidy_chisquare.Rd -------------------------------------------------------------------------------- /man/tidy_combine_distributions.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spsanderson/TidyDensity/HEAD/man/tidy_combine_distributions.Rd -------------------------------------------------------------------------------- /man/tidy_combined_autoplot.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spsanderson/TidyDensity/HEAD/man/tidy_combined_autoplot.Rd -------------------------------------------------------------------------------- /man/tidy_distribution_comparison.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spsanderson/TidyDensity/HEAD/man/tidy_distribution_comparison.Rd -------------------------------------------------------------------------------- /man/tidy_distribution_summary_tbl.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spsanderson/TidyDensity/HEAD/man/tidy_distribution_summary_tbl.Rd -------------------------------------------------------------------------------- /man/tidy_empirical.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spsanderson/TidyDensity/HEAD/man/tidy_empirical.Rd -------------------------------------------------------------------------------- /man/tidy_exponential.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spsanderson/TidyDensity/HEAD/man/tidy_exponential.Rd -------------------------------------------------------------------------------- /man/tidy_f.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spsanderson/TidyDensity/HEAD/man/tidy_f.Rd -------------------------------------------------------------------------------- /man/tidy_four_autoplot.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spsanderson/TidyDensity/HEAD/man/tidy_four_autoplot.Rd -------------------------------------------------------------------------------- /man/tidy_gamma.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spsanderson/TidyDensity/HEAD/man/tidy_gamma.Rd -------------------------------------------------------------------------------- /man/tidy_generalized_beta.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spsanderson/TidyDensity/HEAD/man/tidy_generalized_beta.Rd -------------------------------------------------------------------------------- /man/tidy_generalized_pareto.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spsanderson/TidyDensity/HEAD/man/tidy_generalized_pareto.Rd -------------------------------------------------------------------------------- /man/tidy_geometric.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spsanderson/TidyDensity/HEAD/man/tidy_geometric.Rd -------------------------------------------------------------------------------- /man/tidy_hypergeometric.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spsanderson/TidyDensity/HEAD/man/tidy_hypergeometric.Rd -------------------------------------------------------------------------------- /man/tidy_inverse_burr.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spsanderson/TidyDensity/HEAD/man/tidy_inverse_burr.Rd -------------------------------------------------------------------------------- /man/tidy_inverse_exponential.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spsanderson/TidyDensity/HEAD/man/tidy_inverse_exponential.Rd -------------------------------------------------------------------------------- /man/tidy_inverse_gamma.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spsanderson/TidyDensity/HEAD/man/tidy_inverse_gamma.Rd -------------------------------------------------------------------------------- /man/tidy_inverse_normal.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spsanderson/TidyDensity/HEAD/man/tidy_inverse_normal.Rd -------------------------------------------------------------------------------- /man/tidy_inverse_pareto.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spsanderson/TidyDensity/HEAD/man/tidy_inverse_pareto.Rd -------------------------------------------------------------------------------- /man/tidy_inverse_weibull.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spsanderson/TidyDensity/HEAD/man/tidy_inverse_weibull.Rd -------------------------------------------------------------------------------- /man/tidy_kurtosis_vec.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spsanderson/TidyDensity/HEAD/man/tidy_kurtosis_vec.Rd -------------------------------------------------------------------------------- /man/tidy_logistic.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spsanderson/TidyDensity/HEAD/man/tidy_logistic.Rd -------------------------------------------------------------------------------- /man/tidy_lognormal.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spsanderson/TidyDensity/HEAD/man/tidy_lognormal.Rd -------------------------------------------------------------------------------- /man/tidy_mcmc_sampling.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spsanderson/TidyDensity/HEAD/man/tidy_mcmc_sampling.Rd -------------------------------------------------------------------------------- /man/tidy_mixture_density.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spsanderson/TidyDensity/HEAD/man/tidy_mixture_density.Rd -------------------------------------------------------------------------------- /man/tidy_multi_dist_autoplot.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spsanderson/TidyDensity/HEAD/man/tidy_multi_dist_autoplot.Rd -------------------------------------------------------------------------------- /man/tidy_multi_single_dist.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spsanderson/TidyDensity/HEAD/man/tidy_multi_single_dist.Rd -------------------------------------------------------------------------------- /man/tidy_negative_binomial.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spsanderson/TidyDensity/HEAD/man/tidy_negative_binomial.Rd -------------------------------------------------------------------------------- /man/tidy_normal.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spsanderson/TidyDensity/HEAD/man/tidy_normal.Rd -------------------------------------------------------------------------------- /man/tidy_paralogistic.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spsanderson/TidyDensity/HEAD/man/tidy_paralogistic.Rd -------------------------------------------------------------------------------- /man/tidy_pareto.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spsanderson/TidyDensity/HEAD/man/tidy_pareto.Rd -------------------------------------------------------------------------------- /man/tidy_pareto1.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spsanderson/TidyDensity/HEAD/man/tidy_pareto1.Rd -------------------------------------------------------------------------------- /man/tidy_poisson.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spsanderson/TidyDensity/HEAD/man/tidy_poisson.Rd -------------------------------------------------------------------------------- /man/tidy_random_walk.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spsanderson/TidyDensity/HEAD/man/tidy_random_walk.Rd -------------------------------------------------------------------------------- /man/tidy_random_walk_autoplot.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spsanderson/TidyDensity/HEAD/man/tidy_random_walk_autoplot.Rd -------------------------------------------------------------------------------- /man/tidy_range_statistic.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spsanderson/TidyDensity/HEAD/man/tidy_range_statistic.Rd -------------------------------------------------------------------------------- /man/tidy_scale_zero_one_vec.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spsanderson/TidyDensity/HEAD/man/tidy_scale_zero_one_vec.Rd -------------------------------------------------------------------------------- /man/tidy_skewness_vec.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spsanderson/TidyDensity/HEAD/man/tidy_skewness_vec.Rd -------------------------------------------------------------------------------- /man/tidy_stat_tbl.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spsanderson/TidyDensity/HEAD/man/tidy_stat_tbl.Rd -------------------------------------------------------------------------------- /man/tidy_t.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spsanderson/TidyDensity/HEAD/man/tidy_t.Rd -------------------------------------------------------------------------------- /man/tidy_triangular.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spsanderson/TidyDensity/HEAD/man/tidy_triangular.Rd -------------------------------------------------------------------------------- /man/tidy_uniform.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spsanderson/TidyDensity/HEAD/man/tidy_uniform.Rd -------------------------------------------------------------------------------- /man/tidy_weibull.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spsanderson/TidyDensity/HEAD/man/tidy_weibull.Rd -------------------------------------------------------------------------------- /man/tidy_zero_truncated_binomial.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spsanderson/TidyDensity/HEAD/man/tidy_zero_truncated_binomial.Rd -------------------------------------------------------------------------------- /man/tidy_zero_truncated_geometric.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spsanderson/TidyDensity/HEAD/man/tidy_zero_truncated_geometric.Rd -------------------------------------------------------------------------------- /man/tidy_zero_truncated_negative_binomial.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spsanderson/TidyDensity/HEAD/man/tidy_zero_truncated_negative_binomial.Rd -------------------------------------------------------------------------------- /man/tidy_zero_truncated_poisson.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spsanderson/TidyDensity/HEAD/man/tidy_zero_truncated_poisson.Rd -------------------------------------------------------------------------------- /man/tidyeval.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spsanderson/TidyDensity/HEAD/man/tidyeval.Rd -------------------------------------------------------------------------------- /man/triangle_plot.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spsanderson/TidyDensity/HEAD/man/triangle_plot.Rd -------------------------------------------------------------------------------- /man/util_bernoulli_param_estimate.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spsanderson/TidyDensity/HEAD/man/util_bernoulli_param_estimate.Rd -------------------------------------------------------------------------------- /man/util_bernoulli_stats_tbl.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spsanderson/TidyDensity/HEAD/man/util_bernoulli_stats_tbl.Rd -------------------------------------------------------------------------------- /man/util_beta_aic.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spsanderson/TidyDensity/HEAD/man/util_beta_aic.Rd -------------------------------------------------------------------------------- /man/util_beta_param_estimate.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spsanderson/TidyDensity/HEAD/man/util_beta_param_estimate.Rd -------------------------------------------------------------------------------- /man/util_beta_stats_tbl.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spsanderson/TidyDensity/HEAD/man/util_beta_stats_tbl.Rd -------------------------------------------------------------------------------- /man/util_binomial_aic.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spsanderson/TidyDensity/HEAD/man/util_binomial_aic.Rd -------------------------------------------------------------------------------- /man/util_binomial_param_estimate.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spsanderson/TidyDensity/HEAD/man/util_binomial_param_estimate.Rd -------------------------------------------------------------------------------- /man/util_binomial_stats_tbl.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spsanderson/TidyDensity/HEAD/man/util_binomial_stats_tbl.Rd -------------------------------------------------------------------------------- /man/util_burr_param_estimate.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spsanderson/TidyDensity/HEAD/man/util_burr_param_estimate.Rd -------------------------------------------------------------------------------- /man/util_burr_stats_tbl.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spsanderson/TidyDensity/HEAD/man/util_burr_stats_tbl.Rd -------------------------------------------------------------------------------- /man/util_cauchy_aic.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spsanderson/TidyDensity/HEAD/man/util_cauchy_aic.Rd -------------------------------------------------------------------------------- /man/util_cauchy_param_estimate.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spsanderson/TidyDensity/HEAD/man/util_cauchy_param_estimate.Rd -------------------------------------------------------------------------------- /man/util_cauchy_stats_tbl.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spsanderson/TidyDensity/HEAD/man/util_cauchy_stats_tbl.Rd -------------------------------------------------------------------------------- /man/util_chisq_aic.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spsanderson/TidyDensity/HEAD/man/util_chisq_aic.Rd -------------------------------------------------------------------------------- /man/util_chisquare_param_estimate.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spsanderson/TidyDensity/HEAD/man/util_chisquare_param_estimate.Rd -------------------------------------------------------------------------------- /man/util_chisquare_stats_tbl.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spsanderson/TidyDensity/HEAD/man/util_chisquare_stats_tbl.Rd -------------------------------------------------------------------------------- /man/util_exponential_aic.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spsanderson/TidyDensity/HEAD/man/util_exponential_aic.Rd -------------------------------------------------------------------------------- /man/util_exponential_param_estimate.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spsanderson/TidyDensity/HEAD/man/util_exponential_param_estimate.Rd -------------------------------------------------------------------------------- /man/util_exponential_stats_tbl.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spsanderson/TidyDensity/HEAD/man/util_exponential_stats_tbl.Rd -------------------------------------------------------------------------------- /man/util_f_aic.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spsanderson/TidyDensity/HEAD/man/util_f_aic.Rd -------------------------------------------------------------------------------- /man/util_f_param_estimate.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spsanderson/TidyDensity/HEAD/man/util_f_param_estimate.Rd -------------------------------------------------------------------------------- /man/util_f_stats_tbl.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spsanderson/TidyDensity/HEAD/man/util_f_stats_tbl.Rd -------------------------------------------------------------------------------- /man/util_gamma_aic.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spsanderson/TidyDensity/HEAD/man/util_gamma_aic.Rd -------------------------------------------------------------------------------- /man/util_gamma_param_estimate.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spsanderson/TidyDensity/HEAD/man/util_gamma_param_estimate.Rd -------------------------------------------------------------------------------- /man/util_gamma_stats_tbl.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spsanderson/TidyDensity/HEAD/man/util_gamma_stats_tbl.Rd -------------------------------------------------------------------------------- /man/util_generalized_beta_aic.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spsanderson/TidyDensity/HEAD/man/util_generalized_beta_aic.Rd -------------------------------------------------------------------------------- /man/util_generalized_beta_param_estimate.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spsanderson/TidyDensity/HEAD/man/util_generalized_beta_param_estimate.Rd -------------------------------------------------------------------------------- /man/util_generalized_beta_stats_tbl.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spsanderson/TidyDensity/HEAD/man/util_generalized_beta_stats_tbl.Rd -------------------------------------------------------------------------------- /man/util_generalized_pareto_aic.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spsanderson/TidyDensity/HEAD/man/util_generalized_pareto_aic.Rd -------------------------------------------------------------------------------- /man/util_generalized_pareto_param_estimate.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spsanderson/TidyDensity/HEAD/man/util_generalized_pareto_param_estimate.Rd -------------------------------------------------------------------------------- /man/util_generalized_pareto_stats_tbl.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spsanderson/TidyDensity/HEAD/man/util_generalized_pareto_stats_tbl.Rd -------------------------------------------------------------------------------- /man/util_geometric_aic.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spsanderson/TidyDensity/HEAD/man/util_geometric_aic.Rd -------------------------------------------------------------------------------- /man/util_geometric_param_estimate.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spsanderson/TidyDensity/HEAD/man/util_geometric_param_estimate.Rd -------------------------------------------------------------------------------- /man/util_geometric_stats_tbl.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spsanderson/TidyDensity/HEAD/man/util_geometric_stats_tbl.Rd -------------------------------------------------------------------------------- /man/util_hypergeometric_aic.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spsanderson/TidyDensity/HEAD/man/util_hypergeometric_aic.Rd -------------------------------------------------------------------------------- /man/util_hypergeometric_param_estimate.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spsanderson/TidyDensity/HEAD/man/util_hypergeometric_param_estimate.Rd -------------------------------------------------------------------------------- /man/util_hypergeometric_stats_tbl.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spsanderson/TidyDensity/HEAD/man/util_hypergeometric_stats_tbl.Rd -------------------------------------------------------------------------------- /man/util_inverse_burr_aic.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spsanderson/TidyDensity/HEAD/man/util_inverse_burr_aic.Rd -------------------------------------------------------------------------------- /man/util_inverse_burr_param_estimate.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spsanderson/TidyDensity/HEAD/man/util_inverse_burr_param_estimate.Rd -------------------------------------------------------------------------------- /man/util_inverse_burr_stats_tbl.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spsanderson/TidyDensity/HEAD/man/util_inverse_burr_stats_tbl.Rd -------------------------------------------------------------------------------- /man/util_inverse_pareto_aic.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spsanderson/TidyDensity/HEAD/man/util_inverse_pareto_aic.Rd -------------------------------------------------------------------------------- /man/util_inverse_pareto_param_estimate.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spsanderson/TidyDensity/HEAD/man/util_inverse_pareto_param_estimate.Rd -------------------------------------------------------------------------------- /man/util_inverse_pareto_stats_tbl.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spsanderson/TidyDensity/HEAD/man/util_inverse_pareto_stats_tbl.Rd -------------------------------------------------------------------------------- /man/util_inverse_weibull_aic.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spsanderson/TidyDensity/HEAD/man/util_inverse_weibull_aic.Rd -------------------------------------------------------------------------------- /man/util_inverse_weibull_param_estimate.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spsanderson/TidyDensity/HEAD/man/util_inverse_weibull_param_estimate.Rd -------------------------------------------------------------------------------- /man/util_inverse_weibull_stats_tbl.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spsanderson/TidyDensity/HEAD/man/util_inverse_weibull_stats_tbl.Rd -------------------------------------------------------------------------------- /man/util_logistic_aic.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spsanderson/TidyDensity/HEAD/man/util_logistic_aic.Rd -------------------------------------------------------------------------------- /man/util_logistic_param_estimate.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spsanderson/TidyDensity/HEAD/man/util_logistic_param_estimate.Rd -------------------------------------------------------------------------------- /man/util_logistic_stats_tbl.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spsanderson/TidyDensity/HEAD/man/util_logistic_stats_tbl.Rd -------------------------------------------------------------------------------- /man/util_lognormal_aic.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spsanderson/TidyDensity/HEAD/man/util_lognormal_aic.Rd -------------------------------------------------------------------------------- /man/util_lognormal_param_estimate.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spsanderson/TidyDensity/HEAD/man/util_lognormal_param_estimate.Rd -------------------------------------------------------------------------------- /man/util_lognormal_stats_tbl.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spsanderson/TidyDensity/HEAD/man/util_lognormal_stats_tbl.Rd -------------------------------------------------------------------------------- /man/util_negative_binomial_aic.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spsanderson/TidyDensity/HEAD/man/util_negative_binomial_aic.Rd -------------------------------------------------------------------------------- /man/util_negative_binomial_param_estimate.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spsanderson/TidyDensity/HEAD/man/util_negative_binomial_param_estimate.Rd -------------------------------------------------------------------------------- /man/util_negative_binomial_stats_tbl.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spsanderson/TidyDensity/HEAD/man/util_negative_binomial_stats_tbl.Rd -------------------------------------------------------------------------------- /man/util_normal_aic.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spsanderson/TidyDensity/HEAD/man/util_normal_aic.Rd -------------------------------------------------------------------------------- /man/util_normal_param_estimate.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spsanderson/TidyDensity/HEAD/man/util_normal_param_estimate.Rd -------------------------------------------------------------------------------- /man/util_normal_stats_tbl.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spsanderson/TidyDensity/HEAD/man/util_normal_stats_tbl.Rd -------------------------------------------------------------------------------- /man/util_paralogistic_aic.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spsanderson/TidyDensity/HEAD/man/util_paralogistic_aic.Rd -------------------------------------------------------------------------------- /man/util_paralogistic_param_estimate.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spsanderson/TidyDensity/HEAD/man/util_paralogistic_param_estimate.Rd -------------------------------------------------------------------------------- /man/util_paralogistic_stats_tbl.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spsanderson/TidyDensity/HEAD/man/util_paralogistic_stats_tbl.Rd -------------------------------------------------------------------------------- /man/util_pareto1_aic.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spsanderson/TidyDensity/HEAD/man/util_pareto1_aic.Rd -------------------------------------------------------------------------------- /man/util_pareto1_param_estimate.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spsanderson/TidyDensity/HEAD/man/util_pareto1_param_estimate.Rd -------------------------------------------------------------------------------- /man/util_pareto1_stats_tbl.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spsanderson/TidyDensity/HEAD/man/util_pareto1_stats_tbl.Rd -------------------------------------------------------------------------------- /man/util_pareto_aic.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spsanderson/TidyDensity/HEAD/man/util_pareto_aic.Rd -------------------------------------------------------------------------------- /man/util_pareto_param_estimate.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spsanderson/TidyDensity/HEAD/man/util_pareto_param_estimate.Rd -------------------------------------------------------------------------------- /man/util_pareto_stats_tbl.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spsanderson/TidyDensity/HEAD/man/util_pareto_stats_tbl.Rd -------------------------------------------------------------------------------- /man/util_poisson_aic.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spsanderson/TidyDensity/HEAD/man/util_poisson_aic.Rd -------------------------------------------------------------------------------- /man/util_poisson_param_estimate.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spsanderson/TidyDensity/HEAD/man/util_poisson_param_estimate.Rd -------------------------------------------------------------------------------- /man/util_poisson_stats_tbl.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spsanderson/TidyDensity/HEAD/man/util_poisson_stats_tbl.Rd -------------------------------------------------------------------------------- /man/util_t_aic.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spsanderson/TidyDensity/HEAD/man/util_t_aic.Rd -------------------------------------------------------------------------------- /man/util_t_param_estimate.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spsanderson/TidyDensity/HEAD/man/util_t_param_estimate.Rd -------------------------------------------------------------------------------- /man/util_t_stats_tbl.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spsanderson/TidyDensity/HEAD/man/util_t_stats_tbl.Rd -------------------------------------------------------------------------------- /man/util_triangular_aic.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spsanderson/TidyDensity/HEAD/man/util_triangular_aic.Rd -------------------------------------------------------------------------------- /man/util_triangular_param_estimate.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spsanderson/TidyDensity/HEAD/man/util_triangular_param_estimate.Rd -------------------------------------------------------------------------------- /man/util_triangular_stats_tbl.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spsanderson/TidyDensity/HEAD/man/util_triangular_stats_tbl.Rd -------------------------------------------------------------------------------- /man/util_uniform_aic.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spsanderson/TidyDensity/HEAD/man/util_uniform_aic.Rd -------------------------------------------------------------------------------- /man/util_uniform_param_estimate.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spsanderson/TidyDensity/HEAD/man/util_uniform_param_estimate.Rd -------------------------------------------------------------------------------- /man/util_uniform_stats_tbl.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spsanderson/TidyDensity/HEAD/man/util_uniform_stats_tbl.Rd -------------------------------------------------------------------------------- /man/util_weibull_aic.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spsanderson/TidyDensity/HEAD/man/util_weibull_aic.Rd -------------------------------------------------------------------------------- /man/util_weibull_param_estimate.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spsanderson/TidyDensity/HEAD/man/util_weibull_param_estimate.Rd -------------------------------------------------------------------------------- /man/util_weibull_stats_tbl.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spsanderson/TidyDensity/HEAD/man/util_weibull_stats_tbl.Rd -------------------------------------------------------------------------------- /man/util_zero_truncated_binomial_aic.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spsanderson/TidyDensity/HEAD/man/util_zero_truncated_binomial_aic.Rd -------------------------------------------------------------------------------- /man/util_zero_truncated_binomial_stats_tbl.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spsanderson/TidyDensity/HEAD/man/util_zero_truncated_binomial_stats_tbl.Rd -------------------------------------------------------------------------------- /man/util_zero_truncated_geometric_aic.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spsanderson/TidyDensity/HEAD/man/util_zero_truncated_geometric_aic.Rd -------------------------------------------------------------------------------- /man/util_zero_truncated_geometric_stats_tbl.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spsanderson/TidyDensity/HEAD/man/util_zero_truncated_geometric_stats_tbl.Rd -------------------------------------------------------------------------------- /man/util_zero_truncated_negative_binomial_aic.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spsanderson/TidyDensity/HEAD/man/util_zero_truncated_negative_binomial_aic.Rd -------------------------------------------------------------------------------- /man/util_zero_truncated_poisson_aic.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spsanderson/TidyDensity/HEAD/man/util_zero_truncated_poisson_aic.Rd -------------------------------------------------------------------------------- /man/util_zero_truncated_poisson_param_estimate.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spsanderson/TidyDensity/HEAD/man/util_zero_truncated_poisson_param_estimate.Rd -------------------------------------------------------------------------------- /man/util_zero_truncated_poisson_stats_tbl.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spsanderson/TidyDensity/HEAD/man/util_zero_truncated_poisson_stats_tbl.Rd -------------------------------------------------------------------------------- /pkgdown/favicon/apple-touch-icon-120x120.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spsanderson/TidyDensity/HEAD/pkgdown/favicon/apple-touch-icon-120x120.png -------------------------------------------------------------------------------- /pkgdown/favicon/apple-touch-icon-152x152.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spsanderson/TidyDensity/HEAD/pkgdown/favicon/apple-touch-icon-152x152.png -------------------------------------------------------------------------------- /pkgdown/favicon/apple-touch-icon-180x180.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spsanderson/TidyDensity/HEAD/pkgdown/favicon/apple-touch-icon-180x180.png -------------------------------------------------------------------------------- /pkgdown/favicon/apple-touch-icon-60x60.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spsanderson/TidyDensity/HEAD/pkgdown/favicon/apple-touch-icon-60x60.png -------------------------------------------------------------------------------- /pkgdown/favicon/apple-touch-icon-76x76.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spsanderson/TidyDensity/HEAD/pkgdown/favicon/apple-touch-icon-76x76.png -------------------------------------------------------------------------------- /pkgdown/favicon/apple-touch-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spsanderson/TidyDensity/HEAD/pkgdown/favicon/apple-touch-icon.png -------------------------------------------------------------------------------- /pkgdown/favicon/favicon-16x16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spsanderson/TidyDensity/HEAD/pkgdown/favicon/favicon-16x16.png -------------------------------------------------------------------------------- /pkgdown/favicon/favicon-32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spsanderson/TidyDensity/HEAD/pkgdown/favicon/favicon-32x32.png -------------------------------------------------------------------------------- /pkgdown/favicon/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spsanderson/TidyDensity/HEAD/pkgdown/favicon/favicon.ico -------------------------------------------------------------------------------- /vignettes/.gitignore: -------------------------------------------------------------------------------- 1 | *.html 2 | *.R 3 | -------------------------------------------------------------------------------- /vignettes/advanced-features.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spsanderson/TidyDensity/HEAD/vignettes/advanced-features.Rmd -------------------------------------------------------------------------------- /vignettes/bootstrap-analysis.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spsanderson/TidyDensity/HEAD/vignettes/bootstrap-analysis.Rmd -------------------------------------------------------------------------------- /vignettes/core-concepts.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spsanderson/TidyDensity/HEAD/vignettes/core-concepts.Rmd -------------------------------------------------------------------------------- /vignettes/examples-and-use-cases.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spsanderson/TidyDensity/HEAD/vignettes/examples-and-use-cases.Rmd -------------------------------------------------------------------------------- /vignettes/getting-started.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spsanderson/TidyDensity/HEAD/vignettes/getting-started.Rmd -------------------------------------------------------------------------------- /wiki/Advanced-Features.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spsanderson/TidyDensity/HEAD/wiki/Advanced-Features.md -------------------------------------------------------------------------------- /wiki/Bootstrap-Analysis.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spsanderson/TidyDensity/HEAD/wiki/Bootstrap-Analysis.md -------------------------------------------------------------------------------- /wiki/Contributing-Guidelines.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spsanderson/TidyDensity/HEAD/wiki/Contributing-Guidelines.md -------------------------------------------------------------------------------- /wiki/Core-Concepts.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spsanderson/TidyDensity/HEAD/wiki/Core-Concepts.md -------------------------------------------------------------------------------- /wiki/Development-Setup.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spsanderson/TidyDensity/HEAD/wiki/Development-Setup.md -------------------------------------------------------------------------------- /wiki/Examples-and-Use-Cases.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spsanderson/TidyDensity/HEAD/wiki/Examples-and-Use-Cases.md -------------------------------------------------------------------------------- /wiki/FAQ-and-Troubleshooting.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spsanderson/TidyDensity/HEAD/wiki/FAQ-and-Troubleshooting.md -------------------------------------------------------------------------------- /wiki/Function-Reference.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spsanderson/TidyDensity/HEAD/wiki/Function-Reference.md -------------------------------------------------------------------------------- /wiki/Home.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spsanderson/TidyDensity/HEAD/wiki/Home.md -------------------------------------------------------------------------------- /wiki/Installation-and-Quick-Start.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spsanderson/TidyDensity/HEAD/wiki/Installation-and-Quick-Start.md -------------------------------------------------------------------------------- /wiki/Parameter-Estimation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spsanderson/TidyDensity/HEAD/wiki/Parameter-Estimation.md -------------------------------------------------------------------------------- /wiki/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spsanderson/TidyDensity/HEAD/wiki/README.md -------------------------------------------------------------------------------- /wiki/Supported-Distributions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spsanderson/TidyDensity/HEAD/wiki/Supported-Distributions.md -------------------------------------------------------------------------------- /wiki/Visualization-and-Plotting.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spsanderson/TidyDensity/HEAD/wiki/Visualization-and-Plotting.md --------------------------------------------------------------------------------