gitextract_xvq7co1p/ ├── .Rbuildignore ├── .github/ │ ├── .gitignore │ └── workflows/ │ ├── R-CMD-check.yaml │ ├── pkgdown.yaml │ └── test-coverage.yaml ├── .gitignore ├── CRAN-SUBMISSION ├── DESCRIPTION ├── LICENSE ├── LICENSE.md ├── NAMESPACE ├── NEWS.md ├── R/ │ ├── attach.R │ ├── get_hdr.R │ ├── get_hdr_1d.R │ ├── ggdensity-package.R │ ├── hdr.R │ ├── hdr_fun.R │ ├── hdr_lines.R │ ├── hdr_lines_fun.R │ ├── hdr_points.R │ ├── hdr_points_fun.R │ ├── hdr_rug.R │ ├── hdr_rug_fun.R │ ├── helpers-ggplot2.R │ ├── helpers.R │ ├── method.R │ └── method_1d.R ├── README.Rmd ├── README.md ├── _pkgdown.yml ├── cran-comments.md ├── ggdensity.Rproj ├── man/ │ ├── geom_hdr.Rd │ ├── geom_hdr_fun.Rd │ ├── geom_hdr_points.Rd │ ├── geom_hdr_points_fun.Rd │ ├── geom_hdr_rug.Rd │ ├── geom_hdr_rug_fun.Rd │ ├── get_hdr.Rd │ ├── get_hdr_1d.Rd │ ├── ggdensity.Rd │ ├── method_freqpoly.Rd │ ├── method_freqpoly_1d.Rd │ ├── method_histogram.Rd │ ├── method_histogram_1d.Rd │ ├── method_kde.Rd │ ├── method_kde_1d.Rd │ ├── method_mvnorm.Rd │ └── method_norm_1d.Rd ├── revdep/ │ ├── .gitignore │ ├── README.md │ ├── cran.md │ ├── email.yml │ ├── failures.md │ └── problems.md ├── tests/ │ ├── testthat/ │ │ ├── fixtures/ │ │ │ └── df_norm.rds │ │ ├── test-fix_probs.R │ │ ├── test-get_hdr.R │ │ ├── test-get_hdr_1d.R │ │ ├── test-layer-wrappers.R │ │ ├── test-res_to_df.R │ │ ├── test-res_to_df_1d.R │ │ └── test-visual-tests.R │ └── testthat.R └── vignettes/ ├── .gitignore └── method.Rmd