├── .gitignore ├── Dockerfile ├── ReadMe.md ├── docker-compose.yml ├── dotaScience ├── __init__.py ├── app │ ├── analysis.py │ └── app.py ├── backpack │ ├── __init__.py │ ├── db.py │ └── utils.py ├── echo_slam │ ├── __init__.py │ ├── create.sql │ ├── loop.py │ ├── query.sql │ └── run.py ├── hook │ ├── __init__.py │ ├── get_live_games.py │ ├── get_match_details.py │ └── get_match_history.py ├── magic_wand │ ├── __init__.py │ ├── db.json │ ├── last_player_seen.py │ ├── last_player_seen.sql │ ├── match_player_raw_proceded.py │ ├── mongo_to_spark.py │ ├── repartition_raw.py │ └── select_with_datatypes.sql └── oracle │ ├── __init__.py │ └── ml │ ├── predict │ ├── etl_predict.sql │ ├── get_teams.sql │ └── live_games_prediction.py │ └── training │ ├── etl_query.sql │ ├── etl_train.py │ └── ml_train.py ├── jenkinsfiles ├── Createenv ├── EchoSlam ├── EchoSlam_Par ├── Getmatch ├── LastPlayerSeen ├── LiveGames └── MongoToSpark └── requirements.txt /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeoCalvo/DotaScience/HEAD/.gitignore -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeoCalvo/DotaScience/HEAD/Dockerfile -------------------------------------------------------------------------------- /ReadMe.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeoCalvo/DotaScience/HEAD/ReadMe.md -------------------------------------------------------------------------------- /docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeoCalvo/DotaScience/HEAD/docker-compose.yml -------------------------------------------------------------------------------- /dotaScience/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /dotaScience/app/analysis.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeoCalvo/DotaScience/HEAD/dotaScience/app/analysis.py -------------------------------------------------------------------------------- /dotaScience/app/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeoCalvo/DotaScience/HEAD/dotaScience/app/app.py -------------------------------------------------------------------------------- /dotaScience/backpack/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /dotaScience/backpack/db.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeoCalvo/DotaScience/HEAD/dotaScience/backpack/db.py -------------------------------------------------------------------------------- /dotaScience/backpack/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeoCalvo/DotaScience/HEAD/dotaScience/backpack/utils.py -------------------------------------------------------------------------------- /dotaScience/echo_slam/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /dotaScience/echo_slam/create.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeoCalvo/DotaScience/HEAD/dotaScience/echo_slam/create.sql -------------------------------------------------------------------------------- /dotaScience/echo_slam/loop.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeoCalvo/DotaScience/HEAD/dotaScience/echo_slam/loop.py -------------------------------------------------------------------------------- /dotaScience/echo_slam/query.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeoCalvo/DotaScience/HEAD/dotaScience/echo_slam/query.sql -------------------------------------------------------------------------------- /dotaScience/echo_slam/run.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeoCalvo/DotaScience/HEAD/dotaScience/echo_slam/run.py -------------------------------------------------------------------------------- /dotaScience/hook/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /dotaScience/hook/get_live_games.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeoCalvo/DotaScience/HEAD/dotaScience/hook/get_live_games.py -------------------------------------------------------------------------------- /dotaScience/hook/get_match_details.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeoCalvo/DotaScience/HEAD/dotaScience/hook/get_match_details.py -------------------------------------------------------------------------------- /dotaScience/hook/get_match_history.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeoCalvo/DotaScience/HEAD/dotaScience/hook/get_match_history.py -------------------------------------------------------------------------------- /dotaScience/magic_wand/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /dotaScience/magic_wand/db.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeoCalvo/DotaScience/HEAD/dotaScience/magic_wand/db.json -------------------------------------------------------------------------------- /dotaScience/magic_wand/last_player_seen.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeoCalvo/DotaScience/HEAD/dotaScience/magic_wand/last_player_seen.py -------------------------------------------------------------------------------- /dotaScience/magic_wand/last_player_seen.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeoCalvo/DotaScience/HEAD/dotaScience/magic_wand/last_player_seen.sql -------------------------------------------------------------------------------- /dotaScience/magic_wand/match_player_raw_proceded.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeoCalvo/DotaScience/HEAD/dotaScience/magic_wand/match_player_raw_proceded.py -------------------------------------------------------------------------------- /dotaScience/magic_wand/mongo_to_spark.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeoCalvo/DotaScience/HEAD/dotaScience/magic_wand/mongo_to_spark.py -------------------------------------------------------------------------------- /dotaScience/magic_wand/repartition_raw.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeoCalvo/DotaScience/HEAD/dotaScience/magic_wand/repartition_raw.py -------------------------------------------------------------------------------- /dotaScience/magic_wand/select_with_datatypes.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeoCalvo/DotaScience/HEAD/dotaScience/magic_wand/select_with_datatypes.sql -------------------------------------------------------------------------------- /dotaScience/oracle/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /dotaScience/oracle/ml/predict/etl_predict.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeoCalvo/DotaScience/HEAD/dotaScience/oracle/ml/predict/etl_predict.sql -------------------------------------------------------------------------------- /dotaScience/oracle/ml/predict/get_teams.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeoCalvo/DotaScience/HEAD/dotaScience/oracle/ml/predict/get_teams.sql -------------------------------------------------------------------------------- /dotaScience/oracle/ml/predict/live_games_prediction.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeoCalvo/DotaScience/HEAD/dotaScience/oracle/ml/predict/live_games_prediction.py -------------------------------------------------------------------------------- /dotaScience/oracle/ml/training/etl_query.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeoCalvo/DotaScience/HEAD/dotaScience/oracle/ml/training/etl_query.sql -------------------------------------------------------------------------------- /dotaScience/oracle/ml/training/etl_train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeoCalvo/DotaScience/HEAD/dotaScience/oracle/ml/training/etl_train.py -------------------------------------------------------------------------------- /dotaScience/oracle/ml/training/ml_train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeoCalvo/DotaScience/HEAD/dotaScience/oracle/ml/training/ml_train.py -------------------------------------------------------------------------------- /jenkinsfiles/Createenv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeoCalvo/DotaScience/HEAD/jenkinsfiles/Createenv -------------------------------------------------------------------------------- /jenkinsfiles/EchoSlam: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeoCalvo/DotaScience/HEAD/jenkinsfiles/EchoSlam -------------------------------------------------------------------------------- /jenkinsfiles/EchoSlam_Par: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeoCalvo/DotaScience/HEAD/jenkinsfiles/EchoSlam_Par -------------------------------------------------------------------------------- /jenkinsfiles/Getmatch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeoCalvo/DotaScience/HEAD/jenkinsfiles/Getmatch -------------------------------------------------------------------------------- /jenkinsfiles/LastPlayerSeen: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeoCalvo/DotaScience/HEAD/jenkinsfiles/LastPlayerSeen -------------------------------------------------------------------------------- /jenkinsfiles/LiveGames: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeoCalvo/DotaScience/HEAD/jenkinsfiles/LiveGames -------------------------------------------------------------------------------- /jenkinsfiles/MongoToSpark: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeoCalvo/DotaScience/HEAD/jenkinsfiles/MongoToSpark -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeoCalvo/DotaScience/HEAD/requirements.txt --------------------------------------------------------------------------------