License
38 | 39 |YEAR: 2016-2017 42 | COPYRIGHT HOLDER: Aravind Hebbali 43 |44 | 45 |
├── .github ├── .gitignore └── workflows │ ├── R-CMD-check.yaml │ ├── test-coverage.yaml │ └── rhub.yaml ├── src ├── .gitignore ├── tvar.cpp ├── nsign.cpp ├── init.c └── RcppExports.cpp ├── LICENSE ├── docs ├── LICENSE ├── google02e424888b5e2def.html ├── inferr.jpg ├── hex_inferr.png ├── reference │ ├── ttest.html │ ├── Rplot001.png │ ├── owanova.html │ ├── binom_calc.html │ ├── binom_test.html │ ├── chisq_gof.html │ ├── chisq_test.html │ ├── ind_ttest.html │ ├── os_vartest.html │ ├── prop_test.html │ ├── runs_test.html │ ├── var_test.html │ ├── cochran_test.html │ ├── levene_test.html │ ├── mcnemar_test.html │ ├── os_chisqgof.html │ ├── paired_ttest.html │ ├── ts_prop_test.html │ ├── launch_inferr.html │ ├── two_sample_test.html │ ├── var_test_shiny.html │ ├── inferr-package.html │ ├── ifr_binom_test.html │ ├── infer_os_t_test.html │ ├── infer_runs_test.html │ ├── infer_binom_calc.html │ ├── infer_binom_test.html │ ├── infer_levene_test.html │ ├── infer_os_var_test.html │ ├── infer_ts_var_test.html │ ├── ifr_ts_prop_calc.html │ ├── ifr_ts_prop_group.html │ ├── infer_mcnemar_test.html │ ├── infer_oneway_anova.html │ ├── infer_os_prop_test.html │ ├── infer_ts_ind_ttest.html │ ├── infer_ts_prop_calc.html │ ├── infer_ts_prop_grp.html │ ├── infer_ts_prop_test.html │ ├── ifr_levene_test.default.html │ ├── ifr_os_prop_test.default.html │ ├── infer_chisq_gof_test.html │ ├── infer_cochran_qtest.html │ ├── infer_chisq_assoc_test.html │ ├── infer_launch_shiny_app.html │ └── infer_ts_paired_ttest.html ├── _headers ├── deps │ ├── font-awesome-6.4.2 │ │ └── webfonts │ │ │ ├── fa-brands-400.ttf │ │ │ ├── fa-solid-900.ttf │ │ │ ├── fa-brands-400.woff2 │ │ │ ├── fa-regular-400.ttf │ │ │ ├── fa-solid-900.woff2 │ │ │ ├── fa-regular-400.woff2 │ │ │ ├── fa-v4compatibility.ttf │ │ │ └── fa-v4compatibility.woff2 │ ├── headroom-0.11.0 │ │ ├── jQuery.headroom.min.js │ │ └── headroom.min.js │ ├── data-deps.txt │ └── bootstrap-toc-1.0.1 │ │ └── bootstrap-toc.min.js ├── pkgdown.yml ├── articles │ ├── intro_files │ │ ├── header-attrs-2.6 │ │ │ └── header-attrs.js │ │ └── header-attrs-2.8 │ │ │ └── header-attrs.js │ ├── index.html │ └── reference-media.html ├── katex-auto.js ├── link.svg ├── bootstrap-toc.css ├── docsearch.js ├── docsearch.json ├── jquery.sticky-kit.min.js ├── lightswitch.js ├── LICENSE-text.html ├── LICENSE.html ├── 404.html └── sitemap.xml ├── .gitattributes ├── .gitignore ├── cran-comments.md ├── data ├── hsb.rda ├── exam.rda ├── treatment.rda └── treatment2.rda ├── hex_inferr.png ├── codecov.yml ├── .Rbuildignore ├── R ├── RcppExports.R ├── ifr-data-treatment.R ├── ifr-data-treatment2.R ├── ifr-data-exam.R ├── inferr.R ├── ifr-data-hsb.R ├── ifr-launch-shiny-app.R ├── ifr-zzz.R ├── ifr-utils.R ├── ifr-cochran-q-test.R ├── ifr-chisq-gof-test.R ├── ifr-os-prop-test.R └── ifr-anova.R ├── tests ├── testthat │ ├── _snaps │ │ ├── cochran.md │ │ ├── runs.md │ │ ├── chisqgof.md │ │ ├── levene.md │ │ ├── mcnemar.md │ │ ├── anova.md │ │ ├── chisq.md │ │ ├── two-prop-test.md │ │ ├── binom.md │ │ ├── two-var-test.md │ │ └── os-vartest.md │ ├── test-cochran.R │ ├── test-anova.R │ ├── test-mcnemar.R │ ├── test-levene.R │ ├── test-prop-test.R │ ├── test-chisq.R │ ├── test-os-vartest.R │ ├── test-paired-test.R │ ├── test-ttest.R │ ├── test-two-var-test.R │ ├── test-binom.R │ ├── test-indttest.R │ ├── test-chisqgof.R │ ├── test-runs.R │ └── test-two-prop-test.R ├── testthat.R └── _covrpage.Rmd ├── inferr.Rproj ├── man ├── treatment.Rd ├── ifr_launch_shiny_app.Rd ├── treatment2.Rd ├── exam.Rd ├── inferr.Rd ├── hsb.Rd ├── ifr_cochran_qtest.Rd ├── ifr_oneway_anova.Rd ├── ifr_binom_calc.Rd ├── ifr_chisq_gof_test.Rd ├── ifr_chisq_assoc_test.Rd ├── ifr_mcnemar_test.Rd ├── ifr_os_prop_test.Rd ├── ifr_ts_var_test.Rd ├── ifr_os_var_test.Rd ├── ifr_os_t_test.Rd ├── ifr_ts_paired_ttest.Rd ├── ifr_runs_test.Rd ├── ifr_levene_test.Rd ├── ifr_ts_prop_test.Rd └── ifr_ts_ind_ttest.Rd ├── DESCRIPTION ├── CONDUCT.md ├── NEWS.md ├── _pkgdown.yml ├── NAMESPACE └── README.Rmd /.github/.gitignore: -------------------------------------------------------------------------------- 1 | *.html 2 | -------------------------------------------------------------------------------- /src/.gitignore: -------------------------------------------------------------------------------- 1 | *.o 2 | *.so 3 | *.dll 4 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | YEAR: 2016-2017 2 | COPYRIGHT HOLDER: Aravind Hebbali 3 | -------------------------------------------------------------------------------- /docs/LICENSE: -------------------------------------------------------------------------------- 1 | YEAR: 2016 2 | COPYRIGHT HOLDER: Aravind Hebbali 3 | -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- 1 | * linguist-vendored 2 | *.R linguist-vendored=false 3 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .Rproj.user 2 | .Rhistory 3 | .RData 4 | .Ruserdata 5 | inst/doc 6 | -------------------------------------------------------------------------------- /cran-comments.md: -------------------------------------------------------------------------------- 1 | ## R CMD check results 2 | 3 | 0 errors | 0 warnings | 0 note 4 | -------------------------------------------------------------------------------- /data/hsb.rda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsquaredacademy/inferr/HEAD/data/hsb.rda -------------------------------------------------------------------------------- /data/exam.rda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsquaredacademy/inferr/HEAD/data/exam.rda -------------------------------------------------------------------------------- /docs/google02e424888b5e2def.html: -------------------------------------------------------------------------------- 1 | google-site-verification: google02e424888b5e2def.html -------------------------------------------------------------------------------- /docs/inferr.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsquaredacademy/inferr/HEAD/docs/inferr.jpg -------------------------------------------------------------------------------- /hex_inferr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsquaredacademy/inferr/HEAD/hex_inferr.png -------------------------------------------------------------------------------- /data/treatment.rda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsquaredacademy/inferr/HEAD/data/treatment.rda -------------------------------------------------------------------------------- /data/treatment2.rda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsquaredacademy/inferr/HEAD/data/treatment2.rda -------------------------------------------------------------------------------- /docs/hex_inferr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsquaredacademy/inferr/HEAD/docs/hex_inferr.png -------------------------------------------------------------------------------- /docs/reference/ttest.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsquaredacademy/inferr/HEAD/docs/reference/ttest.html -------------------------------------------------------------------------------- /docs/reference/Rplot001.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsquaredacademy/inferr/HEAD/docs/reference/Rplot001.png -------------------------------------------------------------------------------- /docs/reference/owanova.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsquaredacademy/inferr/HEAD/docs/reference/owanova.html -------------------------------------------------------------------------------- /docs/reference/binom_calc.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsquaredacademy/inferr/HEAD/docs/reference/binom_calc.html -------------------------------------------------------------------------------- /docs/reference/binom_test.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsquaredacademy/inferr/HEAD/docs/reference/binom_test.html -------------------------------------------------------------------------------- /docs/reference/chisq_gof.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsquaredacademy/inferr/HEAD/docs/reference/chisq_gof.html -------------------------------------------------------------------------------- /docs/reference/chisq_test.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsquaredacademy/inferr/HEAD/docs/reference/chisq_test.html -------------------------------------------------------------------------------- /docs/reference/ind_ttest.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsquaredacademy/inferr/HEAD/docs/reference/ind_ttest.html -------------------------------------------------------------------------------- /docs/reference/os_vartest.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsquaredacademy/inferr/HEAD/docs/reference/os_vartest.html -------------------------------------------------------------------------------- /docs/reference/prop_test.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsquaredacademy/inferr/HEAD/docs/reference/prop_test.html -------------------------------------------------------------------------------- /docs/reference/runs_test.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsquaredacademy/inferr/HEAD/docs/reference/runs_test.html -------------------------------------------------------------------------------- /docs/reference/var_test.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsquaredacademy/inferr/HEAD/docs/reference/var_test.html -------------------------------------------------------------------------------- /docs/_headers: -------------------------------------------------------------------------------- 1 | /* 2 | X-Frame-Options: DENY 3 | X-XSS-Protection: 1; mode=block 4 | X-Content-Type-Options: nosniff -------------------------------------------------------------------------------- /docs/reference/cochran_test.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsquaredacademy/inferr/HEAD/docs/reference/cochran_test.html -------------------------------------------------------------------------------- /docs/reference/levene_test.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsquaredacademy/inferr/HEAD/docs/reference/levene_test.html -------------------------------------------------------------------------------- /docs/reference/mcnemar_test.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsquaredacademy/inferr/HEAD/docs/reference/mcnemar_test.html -------------------------------------------------------------------------------- /docs/reference/os_chisqgof.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsquaredacademy/inferr/HEAD/docs/reference/os_chisqgof.html -------------------------------------------------------------------------------- /docs/reference/paired_ttest.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsquaredacademy/inferr/HEAD/docs/reference/paired_ttest.html -------------------------------------------------------------------------------- /docs/reference/ts_prop_test.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsquaredacademy/inferr/HEAD/docs/reference/ts_prop_test.html -------------------------------------------------------------------------------- /docs/reference/launch_inferr.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsquaredacademy/inferr/HEAD/docs/reference/launch_inferr.html -------------------------------------------------------------------------------- /docs/reference/two_sample_test.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsquaredacademy/inferr/HEAD/docs/reference/two_sample_test.html -------------------------------------------------------------------------------- /docs/reference/var_test_shiny.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsquaredacademy/inferr/HEAD/docs/reference/var_test_shiny.html -------------------------------------------------------------------------------- /docs/deps/font-awesome-6.4.2/webfonts/fa-brands-400.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsquaredacademy/inferr/HEAD/docs/deps/font-awesome-6.4.2/webfonts/fa-brands-400.ttf -------------------------------------------------------------------------------- /docs/deps/font-awesome-6.4.2/webfonts/fa-solid-900.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsquaredacademy/inferr/HEAD/docs/deps/font-awesome-6.4.2/webfonts/fa-solid-900.ttf -------------------------------------------------------------------------------- /docs/deps/font-awesome-6.4.2/webfonts/fa-brands-400.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsquaredacademy/inferr/HEAD/docs/deps/font-awesome-6.4.2/webfonts/fa-brands-400.woff2 -------------------------------------------------------------------------------- /docs/deps/font-awesome-6.4.2/webfonts/fa-regular-400.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsquaredacademy/inferr/HEAD/docs/deps/font-awesome-6.4.2/webfonts/fa-regular-400.ttf -------------------------------------------------------------------------------- /docs/deps/font-awesome-6.4.2/webfonts/fa-solid-900.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsquaredacademy/inferr/HEAD/docs/deps/font-awesome-6.4.2/webfonts/fa-solid-900.woff2 -------------------------------------------------------------------------------- /docs/deps/font-awesome-6.4.2/webfonts/fa-regular-400.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsquaredacademy/inferr/HEAD/docs/deps/font-awesome-6.4.2/webfonts/fa-regular-400.woff2 -------------------------------------------------------------------------------- /docs/deps/font-awesome-6.4.2/webfonts/fa-v4compatibility.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsquaredacademy/inferr/HEAD/docs/deps/font-awesome-6.4.2/webfonts/fa-v4compatibility.ttf -------------------------------------------------------------------------------- /docs/deps/font-awesome-6.4.2/webfonts/fa-v4compatibility.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsquaredacademy/inferr/HEAD/docs/deps/font-awesome-6.4.2/webfonts/fa-v4compatibility.woff2 -------------------------------------------------------------------------------- /docs/pkgdown.yml: -------------------------------------------------------------------------------- 1 | pandoc: '3.2' 2 | pkgdown: 2.1.0 3 | pkgdown_sha: ~ 4 | articles: 5 | intro: intro.html 6 | last_built: 2024-11-11T12:38Z 7 | urls: 8 | reference: https://inferr.rsquaredacademy.com/reference 9 | article: https://inferr.rsquaredacademy.com/articles 10 | -------------------------------------------------------------------------------- /codecov.yml: -------------------------------------------------------------------------------- 1 | comment: false 2 | 3 | coverage: 4 | status: 5 | project: 6 | default: 7 | target: auto 8 | threshold: 1% 9 | informational: true 10 | patch: 11 | default: 12 | target: auto 13 | threshold: 1% 14 | informational: true 15 | -------------------------------------------------------------------------------- /.Rbuildignore: -------------------------------------------------------------------------------- 1 | ^.*\.Rproj$ 2 | ^\.Rproj\.user$ 3 | ^appveyor\.yml$ 4 | ^README\.Rmd$ 5 | ^README-.*\.png$ 6 | ^\.travis\.yml$ 7 | ^codecov\.yml$ 8 | ^cran-comments\.md$ 9 | ^_pkgdown\.yml$ 10 | ^docs$ 11 | ^NEWS$ 12 | ^CONDUCT\.md$ 13 | ^.*\.jpg$ 14 | ^hex_inferr\.png$ 15 | ^\.github$ 16 | ^CODE_OF_CONDUCT\.md$ 17 | -------------------------------------------------------------------------------- /docs/reference/inferr-package.html: -------------------------------------------------------------------------------- 1 | 2 |
3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /src/tvar.cpp: -------------------------------------------------------------------------------- 1 | #includeYEAR: 2016-2017 42 | COPYRIGHT HOLDER: Aravind Hebbali 43 |44 | 45 |
YEAR: 2016-2017 108 | COPYRIGHT HOLDER: Aravind Hebbali 109 |110 | 111 |