├── .Rbuildignore ├── COPYING ├── DESCRIPTION ├── LICENSE ├── NAMESPACE ├── R ├── boxplot.R ├── calibration.R ├── classifier_plots.R ├── density.R ├── example.R ├── example_gen.R ├── individual_plots.R ├── lift.R ├── metrics.R ├── notation_key.R ├── positives.R ├── precision.R ├── roc.R └── style.R ├── README.md ├── boris-git.toml ├── boris.toml ├── data └── example_predictions.rda ├── img ├── notation.png └── notation.svg ├── inst └── img │ └── notation.png ├── man ├── accuracy_plot.Rd ├── calculate_auc.Rd ├── calibration_plot.Rd ├── classifierplots.Rd ├── classifierplots_folder.Rd ├── density_plot.Rd ├── example_predictions.Rd ├── figures │ └── example.png ├── lift_plot.Rd ├── notation_key_plot.Rd ├── positives_plot.Rd ├── precision_plot.Rd ├── propensity_plot.Rd ├── recall_plot.Rd ├── roc_plot.Rd └── sigmoid.Rd └── master.toml /.Rbuildignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adefazio/classifierplots/HEAD/.Rbuildignore -------------------------------------------------------------------------------- /COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adefazio/classifierplots/HEAD/COPYING -------------------------------------------------------------------------------- /DESCRIPTION: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adefazio/classifierplots/HEAD/DESCRIPTION -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adefazio/classifierplots/HEAD/LICENSE -------------------------------------------------------------------------------- /NAMESPACE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adefazio/classifierplots/HEAD/NAMESPACE -------------------------------------------------------------------------------- /R/boxplot.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adefazio/classifierplots/HEAD/R/boxplot.R -------------------------------------------------------------------------------- /R/calibration.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adefazio/classifierplots/HEAD/R/calibration.R -------------------------------------------------------------------------------- /R/classifier_plots.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adefazio/classifierplots/HEAD/R/classifier_plots.R -------------------------------------------------------------------------------- /R/density.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adefazio/classifierplots/HEAD/R/density.R -------------------------------------------------------------------------------- /R/example.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adefazio/classifierplots/HEAD/R/example.R -------------------------------------------------------------------------------- /R/example_gen.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adefazio/classifierplots/HEAD/R/example_gen.R -------------------------------------------------------------------------------- /R/individual_plots.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adefazio/classifierplots/HEAD/R/individual_plots.R -------------------------------------------------------------------------------- /R/lift.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adefazio/classifierplots/HEAD/R/lift.R -------------------------------------------------------------------------------- /R/metrics.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adefazio/classifierplots/HEAD/R/metrics.R -------------------------------------------------------------------------------- /R/notation_key.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adefazio/classifierplots/HEAD/R/notation_key.R -------------------------------------------------------------------------------- /R/positives.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adefazio/classifierplots/HEAD/R/positives.R -------------------------------------------------------------------------------- /R/precision.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adefazio/classifierplots/HEAD/R/precision.R -------------------------------------------------------------------------------- /R/roc.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adefazio/classifierplots/HEAD/R/roc.R -------------------------------------------------------------------------------- /R/style.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adefazio/classifierplots/HEAD/R/style.R -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adefazio/classifierplots/HEAD/README.md -------------------------------------------------------------------------------- /boris-git.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adefazio/classifierplots/HEAD/boris-git.toml -------------------------------------------------------------------------------- /boris.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adefazio/classifierplots/HEAD/boris.toml -------------------------------------------------------------------------------- /data/example_predictions.rda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adefazio/classifierplots/HEAD/data/example_predictions.rda -------------------------------------------------------------------------------- /img/notation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adefazio/classifierplots/HEAD/img/notation.png -------------------------------------------------------------------------------- /img/notation.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adefazio/classifierplots/HEAD/img/notation.svg -------------------------------------------------------------------------------- /inst/img/notation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adefazio/classifierplots/HEAD/inst/img/notation.png -------------------------------------------------------------------------------- /man/accuracy_plot.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adefazio/classifierplots/HEAD/man/accuracy_plot.Rd -------------------------------------------------------------------------------- /man/calculate_auc.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adefazio/classifierplots/HEAD/man/calculate_auc.Rd -------------------------------------------------------------------------------- /man/calibration_plot.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adefazio/classifierplots/HEAD/man/calibration_plot.Rd -------------------------------------------------------------------------------- /man/classifierplots.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adefazio/classifierplots/HEAD/man/classifierplots.Rd -------------------------------------------------------------------------------- /man/classifierplots_folder.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adefazio/classifierplots/HEAD/man/classifierplots_folder.Rd -------------------------------------------------------------------------------- /man/density_plot.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adefazio/classifierplots/HEAD/man/density_plot.Rd -------------------------------------------------------------------------------- /man/example_predictions.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adefazio/classifierplots/HEAD/man/example_predictions.Rd -------------------------------------------------------------------------------- /man/figures/example.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adefazio/classifierplots/HEAD/man/figures/example.png -------------------------------------------------------------------------------- /man/lift_plot.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adefazio/classifierplots/HEAD/man/lift_plot.Rd -------------------------------------------------------------------------------- /man/notation_key_plot.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adefazio/classifierplots/HEAD/man/notation_key_plot.Rd -------------------------------------------------------------------------------- /man/positives_plot.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adefazio/classifierplots/HEAD/man/positives_plot.Rd -------------------------------------------------------------------------------- /man/precision_plot.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adefazio/classifierplots/HEAD/man/precision_plot.Rd -------------------------------------------------------------------------------- /man/propensity_plot.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adefazio/classifierplots/HEAD/man/propensity_plot.Rd -------------------------------------------------------------------------------- /man/recall_plot.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adefazio/classifierplots/HEAD/man/recall_plot.Rd -------------------------------------------------------------------------------- /man/roc_plot.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adefazio/classifierplots/HEAD/man/roc_plot.Rd -------------------------------------------------------------------------------- /man/sigmoid.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adefazio/classifierplots/HEAD/man/sigmoid.Rd -------------------------------------------------------------------------------- /master.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adefazio/classifierplots/HEAD/master.toml --------------------------------------------------------------------------------