├── .Rbuildignore ├── .gitignore ├── .travis.yml ├── DESCRIPTION ├── NAMESPACE ├── R ├── buildExplainer.R ├── buildExplainerFromTree.R ├── explainPredictions.R ├── findPath.R ├── getStatsForTrees.R ├── getTreeBreakdown.R └── showWaterfall.R ├── README.md ├── example └── example.R ├── lightgbmExplainer.Rproj └── man ├── buildExplainer.Rd ├── explainPredictions.Rd └── showWaterfall.Rd /.Rbuildignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lantanacamara/lightgbmExplainer/HEAD/.Rbuildignore -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lantanacamara/lightgbmExplainer/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- 1 | language: r 2 | -------------------------------------------------------------------------------- /DESCRIPTION: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lantanacamara/lightgbmExplainer/HEAD/DESCRIPTION -------------------------------------------------------------------------------- /NAMESPACE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lantanacamara/lightgbmExplainer/HEAD/NAMESPACE -------------------------------------------------------------------------------- /R/buildExplainer.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lantanacamara/lightgbmExplainer/HEAD/R/buildExplainer.R -------------------------------------------------------------------------------- /R/buildExplainerFromTree.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lantanacamara/lightgbmExplainer/HEAD/R/buildExplainerFromTree.R -------------------------------------------------------------------------------- /R/explainPredictions.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lantanacamara/lightgbmExplainer/HEAD/R/explainPredictions.R -------------------------------------------------------------------------------- /R/findPath.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lantanacamara/lightgbmExplainer/HEAD/R/findPath.R -------------------------------------------------------------------------------- /R/getStatsForTrees.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lantanacamara/lightgbmExplainer/HEAD/R/getStatsForTrees.R -------------------------------------------------------------------------------- /R/getTreeBreakdown.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lantanacamara/lightgbmExplainer/HEAD/R/getTreeBreakdown.R -------------------------------------------------------------------------------- /R/showWaterfall.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lantanacamara/lightgbmExplainer/HEAD/R/showWaterfall.R -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lantanacamara/lightgbmExplainer/HEAD/README.md -------------------------------------------------------------------------------- /example/example.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lantanacamara/lightgbmExplainer/HEAD/example/example.R -------------------------------------------------------------------------------- /lightgbmExplainer.Rproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lantanacamara/lightgbmExplainer/HEAD/lightgbmExplainer.Rproj -------------------------------------------------------------------------------- /man/buildExplainer.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lantanacamara/lightgbmExplainer/HEAD/man/buildExplainer.Rd -------------------------------------------------------------------------------- /man/explainPredictions.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lantanacamara/lightgbmExplainer/HEAD/man/explainPredictions.Rd -------------------------------------------------------------------------------- /man/showWaterfall.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lantanacamara/lightgbmExplainer/HEAD/man/showWaterfall.Rd --------------------------------------------------------------------------------