├── .gitattributes ├── .gitignore ├── README.md ├── football.csv ├── football_forest.py ├── football_parserf.py ├── random_forest.py └── regression_tree_cart.py /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chandarb/Python-Regression-Tree-Forest/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chandarb/Python-Regression-Tree-Forest/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chandarb/Python-Regression-Tree-Forest/HEAD/README.md -------------------------------------------------------------------------------- /football.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chandarb/Python-Regression-Tree-Forest/HEAD/football.csv -------------------------------------------------------------------------------- /football_forest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chandarb/Python-Regression-Tree-Forest/HEAD/football_forest.py -------------------------------------------------------------------------------- /football_parserf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chandarb/Python-Regression-Tree-Forest/HEAD/football_parserf.py -------------------------------------------------------------------------------- /random_forest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chandarb/Python-Regression-Tree-Forest/HEAD/random_forest.py -------------------------------------------------------------------------------- /regression_tree_cart.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chandarb/Python-Regression-Tree-Forest/HEAD/regression_tree_cart.py --------------------------------------------------------------------------------