├── .DS_Store ├── .Rbuildignore ├── .gitignore ├── DESCRIPTION ├── LICENSE ├── NAMESPACE ├── R ├── .DS_Store ├── buildExplainer.R ├── buildExplainerFromTreeList.R ├── explainPredictions.R ├── findLeaves.R ├── findPath.R ├── getLeafBreakdown.R ├── getStatsForTrees.R ├── getTreeBreakdown.R └── showWaterfall.R ├── README.md ├── installed_old.rda ├── man ├── buildExplainer.Rd ├── explainPredictions.Rd └── showWaterfall.Rd ├── xgboost.model └── xgboostExplainer.Rproj /.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AppliedDataSciencePartners/xgboostExplainer/HEAD/.DS_Store -------------------------------------------------------------------------------- /.Rbuildignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AppliedDataSciencePartners/xgboostExplainer/HEAD/.Rbuildignore -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AppliedDataSciencePartners/xgboostExplainer/HEAD/.gitignore -------------------------------------------------------------------------------- /DESCRIPTION: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AppliedDataSciencePartners/xgboostExplainer/HEAD/DESCRIPTION -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AppliedDataSciencePartners/xgboostExplainer/HEAD/LICENSE -------------------------------------------------------------------------------- /NAMESPACE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AppliedDataSciencePartners/xgboostExplainer/HEAD/NAMESPACE -------------------------------------------------------------------------------- /R/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AppliedDataSciencePartners/xgboostExplainer/HEAD/R/.DS_Store -------------------------------------------------------------------------------- /R/buildExplainer.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AppliedDataSciencePartners/xgboostExplainer/HEAD/R/buildExplainer.R -------------------------------------------------------------------------------- /R/buildExplainerFromTreeList.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AppliedDataSciencePartners/xgboostExplainer/HEAD/R/buildExplainerFromTreeList.R -------------------------------------------------------------------------------- /R/explainPredictions.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AppliedDataSciencePartners/xgboostExplainer/HEAD/R/explainPredictions.R -------------------------------------------------------------------------------- /R/findLeaves.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AppliedDataSciencePartners/xgboostExplainer/HEAD/R/findLeaves.R -------------------------------------------------------------------------------- /R/findPath.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AppliedDataSciencePartners/xgboostExplainer/HEAD/R/findPath.R -------------------------------------------------------------------------------- /R/getLeafBreakdown.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AppliedDataSciencePartners/xgboostExplainer/HEAD/R/getLeafBreakdown.R -------------------------------------------------------------------------------- /R/getStatsForTrees.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AppliedDataSciencePartners/xgboostExplainer/HEAD/R/getStatsForTrees.R -------------------------------------------------------------------------------- /R/getTreeBreakdown.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AppliedDataSciencePartners/xgboostExplainer/HEAD/R/getTreeBreakdown.R -------------------------------------------------------------------------------- /R/showWaterfall.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AppliedDataSciencePartners/xgboostExplainer/HEAD/R/showWaterfall.R -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AppliedDataSciencePartners/xgboostExplainer/HEAD/README.md -------------------------------------------------------------------------------- /installed_old.rda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AppliedDataSciencePartners/xgboostExplainer/HEAD/installed_old.rda -------------------------------------------------------------------------------- /man/buildExplainer.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AppliedDataSciencePartners/xgboostExplainer/HEAD/man/buildExplainer.Rd -------------------------------------------------------------------------------- /man/explainPredictions.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AppliedDataSciencePartners/xgboostExplainer/HEAD/man/explainPredictions.Rd -------------------------------------------------------------------------------- /man/showWaterfall.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AppliedDataSciencePartners/xgboostExplainer/HEAD/man/showWaterfall.Rd -------------------------------------------------------------------------------- /xgboost.model: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AppliedDataSciencePartners/xgboostExplainer/HEAD/xgboost.model -------------------------------------------------------------------------------- /xgboostExplainer.Rproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AppliedDataSciencePartners/xgboostExplainer/HEAD/xgboostExplainer.Rproj --------------------------------------------------------------------------------