├── .Rbuildignore ├── .github ├── .gitignore └── workflows │ ├── R-CMD-check.yaml │ ├── pkgdown.yaml │ └── test-coverage.yaml ├── .gitignore ├── CRAN-SUBMISSION ├── DESCRIPTION ├── LICENSE.md ├── NAMESPACE ├── NEWS.md ├── R ├── ci_cor.R ├── ci_cramersv.R ├── ci_location_shift.R ├── ci_measures_of_location.R ├── ci_measures_of_scale.R ├── ci_oddsratio.R ├── ci_proportion.R ├── ci_rsquared.R ├── ci_skew_and_kurtosis.R ├── standard_errors.R ├── utils_boot.R └── utils_general.R ├── README.md ├── backlog ├── ci_quantile_interval.R ├── concordance.R └── tests_to_improve.txt ├── confintr.Rproj ├── cran-comments.md ├── logo.png ├── man ├── ci_IQR.Rd ├── ci_chisq_ncp.Rd ├── ci_cor.Rd ├── ci_cramersv.Rd ├── ci_f_ncp.Rd ├── ci_kurtosis.Rd ├── ci_mad.Rd ├── ci_mean.Rd ├── ci_mean_diff.Rd ├── ci_median.Rd ├── ci_median_diff.Rd ├── ci_oddsratio.Rd ├── ci_proportion.Rd ├── ci_quantile.Rd ├── ci_quantile_diff.Rd ├── ci_rsquared.Rd ├── ci_sd.Rd ├── ci_skewness.Rd ├── ci_var.Rd ├── cramersv.Rd ├── figures │ └── logo.png ├── is.cint.Rd ├── kurtosis.Rd ├── moment.Rd ├── oddsratio.Rd ├── print.cint.Rd ├── se.Rd └── skewness.Rd ├── packaging.R ├── revdep ├── .gitignore ├── README.md ├── cran.md ├── email.yml ├── failures.md └── problems.md ├── tests ├── testthat.R └── testthat │ ├── test-ci_cor.R │ ├── test-ci_location_shift.R │ ├── test-ci_measures_of_location.R │ ├── test-ci_measures_of_scale.R │ ├── test-ci_oddsratio.R │ ├── test-ci_proportion.R │ ├── test-ci_rsquared.R │ ├── test-ci_skew_and_kurtosis.R │ ├── test-cramersv.R │ ├── test-standard-errors.R │ ├── test-utils_boot.R │ └── test-utils_general.R └── vignettes ├── .gitignore ├── biblio.bib └── confintr.Rmd /.Rbuildignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayer79/confintr/HEAD/.Rbuildignore -------------------------------------------------------------------------------- /.github/.gitignore: -------------------------------------------------------------------------------- 1 | *.html 2 | -------------------------------------------------------------------------------- /.github/workflows/R-CMD-check.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayer79/confintr/HEAD/.github/workflows/R-CMD-check.yaml -------------------------------------------------------------------------------- /.github/workflows/pkgdown.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayer79/confintr/HEAD/.github/workflows/pkgdown.yaml -------------------------------------------------------------------------------- /.github/workflows/test-coverage.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayer79/confintr/HEAD/.github/workflows/test-coverage.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayer79/confintr/HEAD/.gitignore -------------------------------------------------------------------------------- /CRAN-SUBMISSION: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayer79/confintr/HEAD/CRAN-SUBMISSION -------------------------------------------------------------------------------- /DESCRIPTION: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayer79/confintr/HEAD/DESCRIPTION -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayer79/confintr/HEAD/LICENSE.md -------------------------------------------------------------------------------- /NAMESPACE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayer79/confintr/HEAD/NAMESPACE -------------------------------------------------------------------------------- /NEWS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayer79/confintr/HEAD/NEWS.md -------------------------------------------------------------------------------- /R/ci_cor.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayer79/confintr/HEAD/R/ci_cor.R -------------------------------------------------------------------------------- /R/ci_cramersv.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayer79/confintr/HEAD/R/ci_cramersv.R -------------------------------------------------------------------------------- /R/ci_location_shift.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayer79/confintr/HEAD/R/ci_location_shift.R -------------------------------------------------------------------------------- /R/ci_measures_of_location.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayer79/confintr/HEAD/R/ci_measures_of_location.R -------------------------------------------------------------------------------- /R/ci_measures_of_scale.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayer79/confintr/HEAD/R/ci_measures_of_scale.R -------------------------------------------------------------------------------- /R/ci_oddsratio.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayer79/confintr/HEAD/R/ci_oddsratio.R -------------------------------------------------------------------------------- /R/ci_proportion.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayer79/confintr/HEAD/R/ci_proportion.R -------------------------------------------------------------------------------- /R/ci_rsquared.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayer79/confintr/HEAD/R/ci_rsquared.R -------------------------------------------------------------------------------- /R/ci_skew_and_kurtosis.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayer79/confintr/HEAD/R/ci_skew_and_kurtosis.R -------------------------------------------------------------------------------- /R/standard_errors.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayer79/confintr/HEAD/R/standard_errors.R -------------------------------------------------------------------------------- /R/utils_boot.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayer79/confintr/HEAD/R/utils_boot.R -------------------------------------------------------------------------------- /R/utils_general.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayer79/confintr/HEAD/R/utils_general.R -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayer79/confintr/HEAD/README.md -------------------------------------------------------------------------------- /backlog/ci_quantile_interval.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayer79/confintr/HEAD/backlog/ci_quantile_interval.R -------------------------------------------------------------------------------- /backlog/concordance.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayer79/confintr/HEAD/backlog/concordance.R -------------------------------------------------------------------------------- /backlog/tests_to_improve.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayer79/confintr/HEAD/backlog/tests_to_improve.txt -------------------------------------------------------------------------------- /confintr.Rproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayer79/confintr/HEAD/confintr.Rproj -------------------------------------------------------------------------------- /cran-comments.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayer79/confintr/HEAD/cran-comments.md -------------------------------------------------------------------------------- /logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayer79/confintr/HEAD/logo.png -------------------------------------------------------------------------------- /man/ci_IQR.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayer79/confintr/HEAD/man/ci_IQR.Rd -------------------------------------------------------------------------------- /man/ci_chisq_ncp.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayer79/confintr/HEAD/man/ci_chisq_ncp.Rd -------------------------------------------------------------------------------- /man/ci_cor.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayer79/confintr/HEAD/man/ci_cor.Rd -------------------------------------------------------------------------------- /man/ci_cramersv.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayer79/confintr/HEAD/man/ci_cramersv.Rd -------------------------------------------------------------------------------- /man/ci_f_ncp.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayer79/confintr/HEAD/man/ci_f_ncp.Rd -------------------------------------------------------------------------------- /man/ci_kurtosis.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayer79/confintr/HEAD/man/ci_kurtosis.Rd -------------------------------------------------------------------------------- /man/ci_mad.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayer79/confintr/HEAD/man/ci_mad.Rd -------------------------------------------------------------------------------- /man/ci_mean.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayer79/confintr/HEAD/man/ci_mean.Rd -------------------------------------------------------------------------------- /man/ci_mean_diff.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayer79/confintr/HEAD/man/ci_mean_diff.Rd -------------------------------------------------------------------------------- /man/ci_median.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayer79/confintr/HEAD/man/ci_median.Rd -------------------------------------------------------------------------------- /man/ci_median_diff.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayer79/confintr/HEAD/man/ci_median_diff.Rd -------------------------------------------------------------------------------- /man/ci_oddsratio.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayer79/confintr/HEAD/man/ci_oddsratio.Rd -------------------------------------------------------------------------------- /man/ci_proportion.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayer79/confintr/HEAD/man/ci_proportion.Rd -------------------------------------------------------------------------------- /man/ci_quantile.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayer79/confintr/HEAD/man/ci_quantile.Rd -------------------------------------------------------------------------------- /man/ci_quantile_diff.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayer79/confintr/HEAD/man/ci_quantile_diff.Rd -------------------------------------------------------------------------------- /man/ci_rsquared.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayer79/confintr/HEAD/man/ci_rsquared.Rd -------------------------------------------------------------------------------- /man/ci_sd.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayer79/confintr/HEAD/man/ci_sd.Rd -------------------------------------------------------------------------------- /man/ci_skewness.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayer79/confintr/HEAD/man/ci_skewness.Rd -------------------------------------------------------------------------------- /man/ci_var.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayer79/confintr/HEAD/man/ci_var.Rd -------------------------------------------------------------------------------- /man/cramersv.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayer79/confintr/HEAD/man/cramersv.Rd -------------------------------------------------------------------------------- /man/figures/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayer79/confintr/HEAD/man/figures/logo.png -------------------------------------------------------------------------------- /man/is.cint.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayer79/confintr/HEAD/man/is.cint.Rd -------------------------------------------------------------------------------- /man/kurtosis.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayer79/confintr/HEAD/man/kurtosis.Rd -------------------------------------------------------------------------------- /man/moment.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayer79/confintr/HEAD/man/moment.Rd -------------------------------------------------------------------------------- /man/oddsratio.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayer79/confintr/HEAD/man/oddsratio.Rd -------------------------------------------------------------------------------- /man/print.cint.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayer79/confintr/HEAD/man/print.cint.Rd -------------------------------------------------------------------------------- /man/se.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayer79/confintr/HEAD/man/se.Rd -------------------------------------------------------------------------------- /man/skewness.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayer79/confintr/HEAD/man/skewness.Rd -------------------------------------------------------------------------------- /packaging.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayer79/confintr/HEAD/packaging.R -------------------------------------------------------------------------------- /revdep/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayer79/confintr/HEAD/revdep/.gitignore -------------------------------------------------------------------------------- /revdep/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayer79/confintr/HEAD/revdep/README.md -------------------------------------------------------------------------------- /revdep/cran.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayer79/confintr/HEAD/revdep/cran.md -------------------------------------------------------------------------------- /revdep/email.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayer79/confintr/HEAD/revdep/email.yml -------------------------------------------------------------------------------- /revdep/failures.md: -------------------------------------------------------------------------------- 1 | *Wow, no problems at all. :)* -------------------------------------------------------------------------------- /revdep/problems.md: -------------------------------------------------------------------------------- 1 | *Wow, no problems at all. :)* -------------------------------------------------------------------------------- /tests/testthat.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayer79/confintr/HEAD/tests/testthat.R -------------------------------------------------------------------------------- /tests/testthat/test-ci_cor.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayer79/confintr/HEAD/tests/testthat/test-ci_cor.R -------------------------------------------------------------------------------- /tests/testthat/test-ci_location_shift.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayer79/confintr/HEAD/tests/testthat/test-ci_location_shift.R -------------------------------------------------------------------------------- /tests/testthat/test-ci_measures_of_location.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayer79/confintr/HEAD/tests/testthat/test-ci_measures_of_location.R -------------------------------------------------------------------------------- /tests/testthat/test-ci_measures_of_scale.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayer79/confintr/HEAD/tests/testthat/test-ci_measures_of_scale.R -------------------------------------------------------------------------------- /tests/testthat/test-ci_oddsratio.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayer79/confintr/HEAD/tests/testthat/test-ci_oddsratio.R -------------------------------------------------------------------------------- /tests/testthat/test-ci_proportion.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayer79/confintr/HEAD/tests/testthat/test-ci_proportion.R -------------------------------------------------------------------------------- /tests/testthat/test-ci_rsquared.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayer79/confintr/HEAD/tests/testthat/test-ci_rsquared.R -------------------------------------------------------------------------------- /tests/testthat/test-ci_skew_and_kurtosis.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayer79/confintr/HEAD/tests/testthat/test-ci_skew_and_kurtosis.R -------------------------------------------------------------------------------- /tests/testthat/test-cramersv.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayer79/confintr/HEAD/tests/testthat/test-cramersv.R -------------------------------------------------------------------------------- /tests/testthat/test-standard-errors.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayer79/confintr/HEAD/tests/testthat/test-standard-errors.R -------------------------------------------------------------------------------- /tests/testthat/test-utils_boot.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayer79/confintr/HEAD/tests/testthat/test-utils_boot.R -------------------------------------------------------------------------------- /tests/testthat/test-utils_general.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayer79/confintr/HEAD/tests/testthat/test-utils_general.R -------------------------------------------------------------------------------- /vignettes/.gitignore: -------------------------------------------------------------------------------- 1 | *.html 2 | *.R 3 | -------------------------------------------------------------------------------- /vignettes/biblio.bib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayer79/confintr/HEAD/vignettes/biblio.bib -------------------------------------------------------------------------------- /vignettes/confintr.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayer79/confintr/HEAD/vignettes/confintr.Rmd --------------------------------------------------------------------------------