├── .Rbuildignore ├── .gitignore ├── CRAN-RELEASE ├── DESCRIPTION ├── NAMESPACE ├── NEWS.Rmd ├── NEWS.md ├── R ├── _Rhistory ├── bank_td.R ├── dataprepmodelplots.R ├── modelplotr.R ├── parametersmodelplots.R └── plottingmodelplots.R ├── README.Rmd ├── README.md ├── cran-comments.Rmd ├── cran-comments.md ├── data └── bank_td.rda ├── man ├── aggregate_over_ntiles.Rd ├── bank_td.Rd ├── build_input_yourself.Rd ├── customize_plot_text.Rd ├── modelplotr.Rd ├── plot_costsrevs.Rd ├── plot_cumgains.Rd ├── plot_cumlift.Rd ├── plot_cumresponse.Rd ├── plot_multiplot.Rd ├── plot_profit.Rd ├── plot_response.Rd ├── plot_roi.Rd ├── plotting_scope.Rd ├── prepare_scores_and_ntiles.Rd └── prepare_scores_and_ntiles_keras.Rd ├── modelplotr.Rcheck └── 00check.log ├── modelplotr.Rproj ├── tests ├── testthat.R └── testthat │ └── test-prepare_scores_and_deciles.R └── vignettes ├── .gitignore ├── cumgains.png ├── modelplotr.Rmd └── plot123.png /.Rbuildignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jurrr/modelplotr/HEAD/.Rbuildignore -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jurrr/modelplotr/HEAD/.gitignore -------------------------------------------------------------------------------- /CRAN-RELEASE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jurrr/modelplotr/HEAD/CRAN-RELEASE -------------------------------------------------------------------------------- /DESCRIPTION: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jurrr/modelplotr/HEAD/DESCRIPTION -------------------------------------------------------------------------------- /NAMESPACE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jurrr/modelplotr/HEAD/NAMESPACE -------------------------------------------------------------------------------- /NEWS.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jurrr/modelplotr/HEAD/NEWS.Rmd -------------------------------------------------------------------------------- /NEWS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jurrr/modelplotr/HEAD/NEWS.md -------------------------------------------------------------------------------- /R/_Rhistory: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /R/bank_td.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jurrr/modelplotr/HEAD/R/bank_td.R -------------------------------------------------------------------------------- /R/dataprepmodelplots.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jurrr/modelplotr/HEAD/R/dataprepmodelplots.R -------------------------------------------------------------------------------- /R/modelplotr.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jurrr/modelplotr/HEAD/R/modelplotr.R -------------------------------------------------------------------------------- /R/parametersmodelplots.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jurrr/modelplotr/HEAD/R/parametersmodelplots.R -------------------------------------------------------------------------------- /R/plottingmodelplots.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jurrr/modelplotr/HEAD/R/plottingmodelplots.R -------------------------------------------------------------------------------- /README.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jurrr/modelplotr/HEAD/README.Rmd -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jurrr/modelplotr/HEAD/README.md -------------------------------------------------------------------------------- /cran-comments.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jurrr/modelplotr/HEAD/cran-comments.Rmd -------------------------------------------------------------------------------- /cran-comments.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jurrr/modelplotr/HEAD/cran-comments.md -------------------------------------------------------------------------------- /data/bank_td.rda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jurrr/modelplotr/HEAD/data/bank_td.rda -------------------------------------------------------------------------------- /man/aggregate_over_ntiles.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jurrr/modelplotr/HEAD/man/aggregate_over_ntiles.Rd -------------------------------------------------------------------------------- /man/bank_td.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jurrr/modelplotr/HEAD/man/bank_td.Rd -------------------------------------------------------------------------------- /man/build_input_yourself.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jurrr/modelplotr/HEAD/man/build_input_yourself.Rd -------------------------------------------------------------------------------- /man/customize_plot_text.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jurrr/modelplotr/HEAD/man/customize_plot_text.Rd -------------------------------------------------------------------------------- /man/modelplotr.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jurrr/modelplotr/HEAD/man/modelplotr.Rd -------------------------------------------------------------------------------- /man/plot_costsrevs.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jurrr/modelplotr/HEAD/man/plot_costsrevs.Rd -------------------------------------------------------------------------------- /man/plot_cumgains.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jurrr/modelplotr/HEAD/man/plot_cumgains.Rd -------------------------------------------------------------------------------- /man/plot_cumlift.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jurrr/modelplotr/HEAD/man/plot_cumlift.Rd -------------------------------------------------------------------------------- /man/plot_cumresponse.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jurrr/modelplotr/HEAD/man/plot_cumresponse.Rd -------------------------------------------------------------------------------- /man/plot_multiplot.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jurrr/modelplotr/HEAD/man/plot_multiplot.Rd -------------------------------------------------------------------------------- /man/plot_profit.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jurrr/modelplotr/HEAD/man/plot_profit.Rd -------------------------------------------------------------------------------- /man/plot_response.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jurrr/modelplotr/HEAD/man/plot_response.Rd -------------------------------------------------------------------------------- /man/plot_roi.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jurrr/modelplotr/HEAD/man/plot_roi.Rd -------------------------------------------------------------------------------- /man/plotting_scope.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jurrr/modelplotr/HEAD/man/plotting_scope.Rd -------------------------------------------------------------------------------- /man/prepare_scores_and_ntiles.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jurrr/modelplotr/HEAD/man/prepare_scores_and_ntiles.Rd -------------------------------------------------------------------------------- /man/prepare_scores_and_ntiles_keras.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jurrr/modelplotr/HEAD/man/prepare_scores_and_ntiles_keras.Rd -------------------------------------------------------------------------------- /modelplotr.Rcheck/00check.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jurrr/modelplotr/HEAD/modelplotr.Rcheck/00check.log -------------------------------------------------------------------------------- /modelplotr.Rproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jurrr/modelplotr/HEAD/modelplotr.Rproj -------------------------------------------------------------------------------- /tests/testthat.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jurrr/modelplotr/HEAD/tests/testthat.R -------------------------------------------------------------------------------- /tests/testthat/test-prepare_scores_and_deciles.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jurrr/modelplotr/HEAD/tests/testthat/test-prepare_scores_and_deciles.R -------------------------------------------------------------------------------- /vignettes/.gitignore: -------------------------------------------------------------------------------- 1 | *.html 2 | *.R 3 | -------------------------------------------------------------------------------- /vignettes/cumgains.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jurrr/modelplotr/HEAD/vignettes/cumgains.png -------------------------------------------------------------------------------- /vignettes/modelplotr.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jurrr/modelplotr/HEAD/vignettes/modelplotr.Rmd -------------------------------------------------------------------------------- /vignettes/plot123.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jurrr/modelplotr/HEAD/vignettes/plot123.png --------------------------------------------------------------------------------