├── .DS_Store ├── .Rbuildignore ├── .gitignore ├── .travis.yml ├── CRAN-RELEASE ├── DESCRIPTION ├── LICENSE ├── LICENSE.md ├── NAMESPACE ├── NEWS.md ├── R ├── binarize.R ├── correlate.R ├── correlationfunnel-package.R ├── data.R ├── global_variables.R ├── plot_correlation_funnel.R ├── tidyquant_theme_compat.R ├── utils-pipe.R └── zzz.R ├── README.Rmd ├── README.md ├── _pkgdown.yml ├── codecov.yml ├── correlationfunnel.Rproj ├── cran-comments.md ├── data ├── customer_churn_tbl.rda └── marketing_campaign_tbl.rda ├── docs ├── 404.html ├── LICENSE-text.html ├── LICENSE.html ├── articles │ ├── faqs.html │ ├── faqs_files │ │ └── figure-html │ │ │ ├── unnamed-chunk-12-1.png │ │ │ ├── unnamed-chunk-15-1.png │ │ │ ├── unnamed-chunk-2-1.png │ │ │ ├── unnamed-chunk-21-1.png │ │ │ ├── unnamed-chunk-23-1.png │ │ │ ├── unnamed-chunk-5-1.png │ │ │ ├── unnamed-chunk-6-1.png │ │ │ └── unnamed-chunk-9-1.png │ ├── index.html │ ├── introducing_correlation_funnel.html │ ├── introducing_correlation_funnel_files │ │ ├── figure-html │ │ │ └── unnamed-chunk-5-1.png │ │ └── header-attrs-2.1 │ │ │ └── header-attrs.js │ ├── key_considerations.html │ └── key_considerations_files │ │ ├── figure-html │ │ ├── unnamed-chunk-10-1.png │ │ ├── unnamed-chunk-12-1.png │ │ ├── unnamed-chunk-13-1.png │ │ ├── unnamed-chunk-15-1.png │ │ ├── unnamed-chunk-16-1.png │ │ ├── unnamed-chunk-2-1.png │ │ ├── unnamed-chunk-21-1.png │ │ ├── unnamed-chunk-22-1.png │ │ ├── unnamed-chunk-23-1.png │ │ ├── unnamed-chunk-24-1.png │ │ ├── unnamed-chunk-3-1.png │ │ ├── unnamed-chunk-5-1.png │ │ ├── unnamed-chunk-6-1.png │ │ ├── unnamed-chunk-7-1.png │ │ └── unnamed-chunk-9-1.png │ │ └── header-attrs-2.1 │ │ └── header-attrs.js ├── authors.html ├── bootstrap-toc.css ├── bootstrap-toc.js ├── docsearch.css ├── docsearch.js ├── index.html ├── link.svg ├── man │ └── figures │ │ └── README-corr_funnel.png ├── news │ └── index.html ├── pkgdown.css ├── pkgdown.js ├── pkgdown.yml └── reference │ ├── binarize.html │ ├── correlate.html │ ├── correlationfunnel-package.html │ ├── customer_churn_tbl.html │ ├── figures │ ├── README-3-course-system.jpg │ ├── README-corr_funnel.png │ ├── README-unnamed-chunk-5-1.png │ ├── README-unnamed-chunk-6-1.png │ └── logo-correlationfunnel.png │ ├── index.html │ ├── marketing_campaign_tbl.html │ ├── pipe.html │ ├── plot_correlation_funnel-1.png │ └── plot_correlation_funnel.html ├── man ├── .DS_Store ├── binarize.Rd ├── correlate.Rd ├── correlationfunnel-package.Rd ├── customer_churn_tbl.Rd ├── figures │ ├── .DS_Store │ ├── README-3-course-system.jpg │ ├── README-corr_funnel.png │ ├── README-unnamed-chunk-5-1.png │ ├── README-unnamed-chunk-6-1.png │ └── logo-correlationfunnel.png ├── marketing_campaign_tbl.Rd ├── pipe.Rd └── plot_correlation_funnel.Rd ├── tests ├── testthat.R └── testthat │ ├── test-binarize.R │ ├── test-correlate.R │ └── test-plot_correlation_funnel.R └── vignettes ├── .gitignore ├── introducing_correlation_funnel.Rmd └── key_considerations.Rmd /.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/business-science/correlationfunnel/HEAD/.DS_Store -------------------------------------------------------------------------------- /.Rbuildignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/business-science/correlationfunnel/HEAD/.Rbuildignore -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/business-science/correlationfunnel/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/business-science/correlationfunnel/HEAD/.travis.yml -------------------------------------------------------------------------------- /CRAN-RELEASE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/business-science/correlationfunnel/HEAD/CRAN-RELEASE -------------------------------------------------------------------------------- /DESCRIPTION: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/business-science/correlationfunnel/HEAD/DESCRIPTION -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | YEAR: 2019 2 | COPYRIGHT HOLDER: Matt Dancho 3 | -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/business-science/correlationfunnel/HEAD/LICENSE.md -------------------------------------------------------------------------------- /NAMESPACE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/business-science/correlationfunnel/HEAD/NAMESPACE -------------------------------------------------------------------------------- /NEWS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/business-science/correlationfunnel/HEAD/NEWS.md -------------------------------------------------------------------------------- /R/binarize.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/business-science/correlationfunnel/HEAD/R/binarize.R -------------------------------------------------------------------------------- /R/correlate.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/business-science/correlationfunnel/HEAD/R/correlate.R -------------------------------------------------------------------------------- /R/correlationfunnel-package.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/business-science/correlationfunnel/HEAD/R/correlationfunnel-package.R -------------------------------------------------------------------------------- /R/data.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/business-science/correlationfunnel/HEAD/R/data.R -------------------------------------------------------------------------------- /R/global_variables.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/business-science/correlationfunnel/HEAD/R/global_variables.R -------------------------------------------------------------------------------- /R/plot_correlation_funnel.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/business-science/correlationfunnel/HEAD/R/plot_correlation_funnel.R -------------------------------------------------------------------------------- /R/tidyquant_theme_compat.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/business-science/correlationfunnel/HEAD/R/tidyquant_theme_compat.R -------------------------------------------------------------------------------- /R/utils-pipe.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/business-science/correlationfunnel/HEAD/R/utils-pipe.R -------------------------------------------------------------------------------- /R/zzz.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/business-science/correlationfunnel/HEAD/R/zzz.R -------------------------------------------------------------------------------- /README.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/business-science/correlationfunnel/HEAD/README.Rmd -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/business-science/correlationfunnel/HEAD/README.md -------------------------------------------------------------------------------- /_pkgdown.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/business-science/correlationfunnel/HEAD/_pkgdown.yml -------------------------------------------------------------------------------- /codecov.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/business-science/correlationfunnel/HEAD/codecov.yml -------------------------------------------------------------------------------- /correlationfunnel.Rproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/business-science/correlationfunnel/HEAD/correlationfunnel.Rproj -------------------------------------------------------------------------------- /cran-comments.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/business-science/correlationfunnel/HEAD/cran-comments.md -------------------------------------------------------------------------------- /data/customer_churn_tbl.rda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/business-science/correlationfunnel/HEAD/data/customer_churn_tbl.rda -------------------------------------------------------------------------------- /data/marketing_campaign_tbl.rda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/business-science/correlationfunnel/HEAD/data/marketing_campaign_tbl.rda -------------------------------------------------------------------------------- /docs/404.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/business-science/correlationfunnel/HEAD/docs/404.html -------------------------------------------------------------------------------- /docs/LICENSE-text.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/business-science/correlationfunnel/HEAD/docs/LICENSE-text.html -------------------------------------------------------------------------------- /docs/LICENSE.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/business-science/correlationfunnel/HEAD/docs/LICENSE.html -------------------------------------------------------------------------------- /docs/articles/faqs.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/business-science/correlationfunnel/HEAD/docs/articles/faqs.html -------------------------------------------------------------------------------- /docs/articles/faqs_files/figure-html/unnamed-chunk-12-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/business-science/correlationfunnel/HEAD/docs/articles/faqs_files/figure-html/unnamed-chunk-12-1.png -------------------------------------------------------------------------------- /docs/articles/faqs_files/figure-html/unnamed-chunk-15-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/business-science/correlationfunnel/HEAD/docs/articles/faqs_files/figure-html/unnamed-chunk-15-1.png -------------------------------------------------------------------------------- /docs/articles/faqs_files/figure-html/unnamed-chunk-2-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/business-science/correlationfunnel/HEAD/docs/articles/faqs_files/figure-html/unnamed-chunk-2-1.png -------------------------------------------------------------------------------- /docs/articles/faqs_files/figure-html/unnamed-chunk-21-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/business-science/correlationfunnel/HEAD/docs/articles/faqs_files/figure-html/unnamed-chunk-21-1.png -------------------------------------------------------------------------------- /docs/articles/faqs_files/figure-html/unnamed-chunk-23-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/business-science/correlationfunnel/HEAD/docs/articles/faqs_files/figure-html/unnamed-chunk-23-1.png -------------------------------------------------------------------------------- /docs/articles/faqs_files/figure-html/unnamed-chunk-5-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/business-science/correlationfunnel/HEAD/docs/articles/faqs_files/figure-html/unnamed-chunk-5-1.png -------------------------------------------------------------------------------- /docs/articles/faqs_files/figure-html/unnamed-chunk-6-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/business-science/correlationfunnel/HEAD/docs/articles/faqs_files/figure-html/unnamed-chunk-6-1.png -------------------------------------------------------------------------------- /docs/articles/faqs_files/figure-html/unnamed-chunk-9-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/business-science/correlationfunnel/HEAD/docs/articles/faqs_files/figure-html/unnamed-chunk-9-1.png -------------------------------------------------------------------------------- /docs/articles/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/business-science/correlationfunnel/HEAD/docs/articles/index.html -------------------------------------------------------------------------------- /docs/articles/introducing_correlation_funnel.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/business-science/correlationfunnel/HEAD/docs/articles/introducing_correlation_funnel.html -------------------------------------------------------------------------------- /docs/articles/introducing_correlation_funnel_files/figure-html/unnamed-chunk-5-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/business-science/correlationfunnel/HEAD/docs/articles/introducing_correlation_funnel_files/figure-html/unnamed-chunk-5-1.png -------------------------------------------------------------------------------- /docs/articles/introducing_correlation_funnel_files/header-attrs-2.1/header-attrs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/business-science/correlationfunnel/HEAD/docs/articles/introducing_correlation_funnel_files/header-attrs-2.1/header-attrs.js -------------------------------------------------------------------------------- /docs/articles/key_considerations.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/business-science/correlationfunnel/HEAD/docs/articles/key_considerations.html -------------------------------------------------------------------------------- /docs/articles/key_considerations_files/figure-html/unnamed-chunk-10-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/business-science/correlationfunnel/HEAD/docs/articles/key_considerations_files/figure-html/unnamed-chunk-10-1.png -------------------------------------------------------------------------------- /docs/articles/key_considerations_files/figure-html/unnamed-chunk-12-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/business-science/correlationfunnel/HEAD/docs/articles/key_considerations_files/figure-html/unnamed-chunk-12-1.png -------------------------------------------------------------------------------- /docs/articles/key_considerations_files/figure-html/unnamed-chunk-13-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/business-science/correlationfunnel/HEAD/docs/articles/key_considerations_files/figure-html/unnamed-chunk-13-1.png -------------------------------------------------------------------------------- /docs/articles/key_considerations_files/figure-html/unnamed-chunk-15-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/business-science/correlationfunnel/HEAD/docs/articles/key_considerations_files/figure-html/unnamed-chunk-15-1.png -------------------------------------------------------------------------------- /docs/articles/key_considerations_files/figure-html/unnamed-chunk-16-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/business-science/correlationfunnel/HEAD/docs/articles/key_considerations_files/figure-html/unnamed-chunk-16-1.png -------------------------------------------------------------------------------- /docs/articles/key_considerations_files/figure-html/unnamed-chunk-2-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/business-science/correlationfunnel/HEAD/docs/articles/key_considerations_files/figure-html/unnamed-chunk-2-1.png -------------------------------------------------------------------------------- /docs/articles/key_considerations_files/figure-html/unnamed-chunk-21-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/business-science/correlationfunnel/HEAD/docs/articles/key_considerations_files/figure-html/unnamed-chunk-21-1.png -------------------------------------------------------------------------------- /docs/articles/key_considerations_files/figure-html/unnamed-chunk-22-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/business-science/correlationfunnel/HEAD/docs/articles/key_considerations_files/figure-html/unnamed-chunk-22-1.png -------------------------------------------------------------------------------- /docs/articles/key_considerations_files/figure-html/unnamed-chunk-23-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/business-science/correlationfunnel/HEAD/docs/articles/key_considerations_files/figure-html/unnamed-chunk-23-1.png -------------------------------------------------------------------------------- /docs/articles/key_considerations_files/figure-html/unnamed-chunk-24-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/business-science/correlationfunnel/HEAD/docs/articles/key_considerations_files/figure-html/unnamed-chunk-24-1.png -------------------------------------------------------------------------------- /docs/articles/key_considerations_files/figure-html/unnamed-chunk-3-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/business-science/correlationfunnel/HEAD/docs/articles/key_considerations_files/figure-html/unnamed-chunk-3-1.png -------------------------------------------------------------------------------- /docs/articles/key_considerations_files/figure-html/unnamed-chunk-5-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/business-science/correlationfunnel/HEAD/docs/articles/key_considerations_files/figure-html/unnamed-chunk-5-1.png -------------------------------------------------------------------------------- /docs/articles/key_considerations_files/figure-html/unnamed-chunk-6-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/business-science/correlationfunnel/HEAD/docs/articles/key_considerations_files/figure-html/unnamed-chunk-6-1.png -------------------------------------------------------------------------------- /docs/articles/key_considerations_files/figure-html/unnamed-chunk-7-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/business-science/correlationfunnel/HEAD/docs/articles/key_considerations_files/figure-html/unnamed-chunk-7-1.png -------------------------------------------------------------------------------- /docs/articles/key_considerations_files/figure-html/unnamed-chunk-9-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/business-science/correlationfunnel/HEAD/docs/articles/key_considerations_files/figure-html/unnamed-chunk-9-1.png -------------------------------------------------------------------------------- /docs/articles/key_considerations_files/header-attrs-2.1/header-attrs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/business-science/correlationfunnel/HEAD/docs/articles/key_considerations_files/header-attrs-2.1/header-attrs.js -------------------------------------------------------------------------------- /docs/authors.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/business-science/correlationfunnel/HEAD/docs/authors.html -------------------------------------------------------------------------------- /docs/bootstrap-toc.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/business-science/correlationfunnel/HEAD/docs/bootstrap-toc.css -------------------------------------------------------------------------------- /docs/bootstrap-toc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/business-science/correlationfunnel/HEAD/docs/bootstrap-toc.js -------------------------------------------------------------------------------- /docs/docsearch.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/business-science/correlationfunnel/HEAD/docs/docsearch.css -------------------------------------------------------------------------------- /docs/docsearch.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/business-science/correlationfunnel/HEAD/docs/docsearch.js -------------------------------------------------------------------------------- /docs/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/business-science/correlationfunnel/HEAD/docs/index.html -------------------------------------------------------------------------------- /docs/link.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/business-science/correlationfunnel/HEAD/docs/link.svg -------------------------------------------------------------------------------- /docs/man/figures/README-corr_funnel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/business-science/correlationfunnel/HEAD/docs/man/figures/README-corr_funnel.png -------------------------------------------------------------------------------- /docs/news/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/business-science/correlationfunnel/HEAD/docs/news/index.html -------------------------------------------------------------------------------- /docs/pkgdown.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/business-science/correlationfunnel/HEAD/docs/pkgdown.css -------------------------------------------------------------------------------- /docs/pkgdown.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/business-science/correlationfunnel/HEAD/docs/pkgdown.js -------------------------------------------------------------------------------- /docs/pkgdown.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/business-science/correlationfunnel/HEAD/docs/pkgdown.yml -------------------------------------------------------------------------------- /docs/reference/binarize.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/business-science/correlationfunnel/HEAD/docs/reference/binarize.html -------------------------------------------------------------------------------- /docs/reference/correlate.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/business-science/correlationfunnel/HEAD/docs/reference/correlate.html -------------------------------------------------------------------------------- /docs/reference/correlationfunnel-package.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/business-science/correlationfunnel/HEAD/docs/reference/correlationfunnel-package.html -------------------------------------------------------------------------------- /docs/reference/customer_churn_tbl.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/business-science/correlationfunnel/HEAD/docs/reference/customer_churn_tbl.html -------------------------------------------------------------------------------- /docs/reference/figures/README-3-course-system.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/business-science/correlationfunnel/HEAD/docs/reference/figures/README-3-course-system.jpg -------------------------------------------------------------------------------- /docs/reference/figures/README-corr_funnel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/business-science/correlationfunnel/HEAD/docs/reference/figures/README-corr_funnel.png -------------------------------------------------------------------------------- /docs/reference/figures/README-unnamed-chunk-5-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/business-science/correlationfunnel/HEAD/docs/reference/figures/README-unnamed-chunk-5-1.png -------------------------------------------------------------------------------- /docs/reference/figures/README-unnamed-chunk-6-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/business-science/correlationfunnel/HEAD/docs/reference/figures/README-unnamed-chunk-6-1.png -------------------------------------------------------------------------------- /docs/reference/figures/logo-correlationfunnel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/business-science/correlationfunnel/HEAD/docs/reference/figures/logo-correlationfunnel.png -------------------------------------------------------------------------------- /docs/reference/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/business-science/correlationfunnel/HEAD/docs/reference/index.html -------------------------------------------------------------------------------- /docs/reference/marketing_campaign_tbl.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/business-science/correlationfunnel/HEAD/docs/reference/marketing_campaign_tbl.html -------------------------------------------------------------------------------- /docs/reference/pipe.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/business-science/correlationfunnel/HEAD/docs/reference/pipe.html -------------------------------------------------------------------------------- /docs/reference/plot_correlation_funnel-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/business-science/correlationfunnel/HEAD/docs/reference/plot_correlation_funnel-1.png -------------------------------------------------------------------------------- /docs/reference/plot_correlation_funnel.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/business-science/correlationfunnel/HEAD/docs/reference/plot_correlation_funnel.html -------------------------------------------------------------------------------- /man/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/business-science/correlationfunnel/HEAD/man/.DS_Store -------------------------------------------------------------------------------- /man/binarize.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/business-science/correlationfunnel/HEAD/man/binarize.Rd -------------------------------------------------------------------------------- /man/correlate.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/business-science/correlationfunnel/HEAD/man/correlate.Rd -------------------------------------------------------------------------------- /man/correlationfunnel-package.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/business-science/correlationfunnel/HEAD/man/correlationfunnel-package.Rd -------------------------------------------------------------------------------- /man/customer_churn_tbl.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/business-science/correlationfunnel/HEAD/man/customer_churn_tbl.Rd -------------------------------------------------------------------------------- /man/figures/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/business-science/correlationfunnel/HEAD/man/figures/.DS_Store -------------------------------------------------------------------------------- /man/figures/README-3-course-system.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/business-science/correlationfunnel/HEAD/man/figures/README-3-course-system.jpg -------------------------------------------------------------------------------- /man/figures/README-corr_funnel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/business-science/correlationfunnel/HEAD/man/figures/README-corr_funnel.png -------------------------------------------------------------------------------- /man/figures/README-unnamed-chunk-5-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/business-science/correlationfunnel/HEAD/man/figures/README-unnamed-chunk-5-1.png -------------------------------------------------------------------------------- /man/figures/README-unnamed-chunk-6-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/business-science/correlationfunnel/HEAD/man/figures/README-unnamed-chunk-6-1.png -------------------------------------------------------------------------------- /man/figures/logo-correlationfunnel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/business-science/correlationfunnel/HEAD/man/figures/logo-correlationfunnel.png -------------------------------------------------------------------------------- /man/marketing_campaign_tbl.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/business-science/correlationfunnel/HEAD/man/marketing_campaign_tbl.Rd -------------------------------------------------------------------------------- /man/pipe.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/business-science/correlationfunnel/HEAD/man/pipe.Rd -------------------------------------------------------------------------------- /man/plot_correlation_funnel.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/business-science/correlationfunnel/HEAD/man/plot_correlation_funnel.Rd -------------------------------------------------------------------------------- /tests/testthat.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/business-science/correlationfunnel/HEAD/tests/testthat.R -------------------------------------------------------------------------------- /tests/testthat/test-binarize.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/business-science/correlationfunnel/HEAD/tests/testthat/test-binarize.R -------------------------------------------------------------------------------- /tests/testthat/test-correlate.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/business-science/correlationfunnel/HEAD/tests/testthat/test-correlate.R -------------------------------------------------------------------------------- /tests/testthat/test-plot_correlation_funnel.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/business-science/correlationfunnel/HEAD/tests/testthat/test-plot_correlation_funnel.R -------------------------------------------------------------------------------- /vignettes/.gitignore: -------------------------------------------------------------------------------- 1 | *.html 2 | *.R 3 | -------------------------------------------------------------------------------- /vignettes/introducing_correlation_funnel.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/business-science/correlationfunnel/HEAD/vignettes/introducing_correlation_funnel.Rmd -------------------------------------------------------------------------------- /vignettes/key_considerations.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/business-science/correlationfunnel/HEAD/vignettes/key_considerations.Rmd --------------------------------------------------------------------------------