Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/jimhester/ncaa-bracket-predictor
Simulate NCAA brackets
https://github.com/jimhester/ncaa-bracket-predictor
Last synced: 20 days ago
JSON representation
Simulate NCAA brackets
- Host: GitHub
- URL: https://github.com/jimhester/ncaa-bracket-predictor
- Owner: jimhester
- License: mit
- Created: 2014-03-19T14:51:41.000Z (almost 11 years ago)
- Default Branch: master
- Last Pushed: 2014-03-19T15:13:12.000Z (almost 11 years ago)
- Last Synced: 2024-11-05T03:22:06.340Z (2 months ago)
- Language: Perl
- Size: 133 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# NCAA bracket prediction #
Some code to simulate a NCAA bracket.[See current status](http://games.espn.go.com/tournament-challenge-bracket/2014/en/entry?entryID=7491306)
- Use teams [Pomeroy Ratings](http://kenpom.com/).
- Simulate game outcomes by `rand() < log(rating2)/(log(rating1) + log(rating2))`
- Run X simulations of the bracket (defaults to 1000)## Example Usage ##
```bash
# Creates tab delimited output file probabilities.tsv
make# With more simulations
make NUM=10000
```## Prereqs ##
- [perl](http://www.perl.org/)
- [seq](http://www.delorie.com/gnu/docs/textutils/coreutils_156.html)
- [make](https://www.gnu.org/software/make/)
- interest in college basketball