├── .gitignore ├── LICENSE ├── README.md ├── boston.csv ├── example_boston.py ├── example_boston_rf.py ├── example_simulated.py ├── rulefit ├── __init__.py └── rulefit.py ├── setup.py ├── test_predict.py └── test_rulefit.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophM/rulefit/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophM/rulefit/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophM/rulefit/HEAD/README.md -------------------------------------------------------------------------------- /boston.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophM/rulefit/HEAD/boston.csv -------------------------------------------------------------------------------- /example_boston.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophM/rulefit/HEAD/example_boston.py -------------------------------------------------------------------------------- /example_boston_rf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophM/rulefit/HEAD/example_boston_rf.py -------------------------------------------------------------------------------- /example_simulated.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophM/rulefit/HEAD/example_simulated.py -------------------------------------------------------------------------------- /rulefit/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophM/rulefit/HEAD/rulefit/__init__.py -------------------------------------------------------------------------------- /rulefit/rulefit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophM/rulefit/HEAD/rulefit/rulefit.py -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophM/rulefit/HEAD/setup.py -------------------------------------------------------------------------------- /test_predict.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophM/rulefit/HEAD/test_predict.py -------------------------------------------------------------------------------- /test_rulefit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophM/rulefit/HEAD/test_rulefit.py --------------------------------------------------------------------------------