- Jake Becker
- Evan Ciancio
- Phillip Mathew
- Justin Liss
- Sri Garlapati
- Brendan Hart
- Christopher Castro
- Cooper James
- Drew Macleod
- Shuzheng Zheng
This is a repository to hold scripts for WolverineSportsAnalytics WNBA daily fantasy sports lineup Optimization
Make a directory - note - make sure there are no spaces in file path
git clone https://github.com/WolverineSportsAnalytics/WNBA.git
cd WNBA
Virtual Env acts as a virtual environment so that we can virtually install python packages and not overwrite the ones on our system
pip install virtualenv
Go to your directory where you cloned the repository
$ virtualenv --python=/usr/bin/python2.7 ENV/
Check your python version to see if you are running python 2.7
$ python --version
$ source env/bin/activate
- Make sure in home directory - try these to see if it works
pip install -r requirements.txt
$ deactivate
- make sure in home directory
$ source bin/activate
pip install package
pip freeze > requirements.txt
$ deactivate
SELECT dates.date, avg(abs(performance.rotowireProj - performance.fanduelPTS)) as avgs FROM dates INNER JOIN performance ON dates.iddates = performance.dateID where rotowireProj is not null group by date;