├── .gitignore ├── LICENSE ├── README.md ├── analysis ├── .gitignore ├── analysis-cnk.ipynb ├── analysis-elh.ipynb └── games-features-edit.csv ├── data ├── .gitignore ├── CSV Field Work.ipynb ├── CSV-Column-Plans.ods ├── Makefile ├── README.md ├── columns.md ├── example.py ├── games-features.py ├── games.py ├── idlist.py ├── pytool ├── requirements.txt └── setup └── report ├── .gitignore ├── Makefile ├── SConstruct ├── data-flow.eps ├── data-flow.graphml ├── data-flow.pdf ├── eh-draft.txt ├── freevnon-metacritic-bar.png ├── freevnon-ratings-bar.png ├── genre-metacritic-bar.png ├── genre-ratings-bar.png ├── metacritic-recommendations-scatter-all.png ├── metacritic-recommendations-scatter.png ├── numeric-exploration.png ├── player-count-recommends-distribution.png ├── player-count-recommends-jointwithreg.png ├── price-metacritic-scatter-all.png ├── price-metacritic-scatter.png ├── price-recommendations-scatter-all.png ├── price-recommendations-scatter.png ├── report.bib ├── report.pdf └── report.tex /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CraigKelly/steam-data/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CraigKelly/steam-data/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CraigKelly/steam-data/HEAD/README.md -------------------------------------------------------------------------------- /analysis/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /analysis/analysis-cnk.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CraigKelly/steam-data/HEAD/analysis/analysis-cnk.ipynb -------------------------------------------------------------------------------- /analysis/analysis-elh.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CraigKelly/steam-data/HEAD/analysis/analysis-elh.ipynb -------------------------------------------------------------------------------- /analysis/games-features-edit.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CraigKelly/steam-data/HEAD/analysis/games-features-edit.csv -------------------------------------------------------------------------------- /data/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CraigKelly/steam-data/HEAD/data/.gitignore -------------------------------------------------------------------------------- /data/CSV Field Work.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CraigKelly/steam-data/HEAD/data/CSV Field Work.ipynb -------------------------------------------------------------------------------- /data/CSV-Column-Plans.ods: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CraigKelly/steam-data/HEAD/data/CSV-Column-Plans.ods -------------------------------------------------------------------------------- /data/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CraigKelly/steam-data/HEAD/data/Makefile -------------------------------------------------------------------------------- /data/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CraigKelly/steam-data/HEAD/data/README.md -------------------------------------------------------------------------------- /data/columns.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CraigKelly/steam-data/HEAD/data/columns.md -------------------------------------------------------------------------------- /data/example.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CraigKelly/steam-data/HEAD/data/example.py -------------------------------------------------------------------------------- /data/games-features.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CraigKelly/steam-data/HEAD/data/games-features.py -------------------------------------------------------------------------------- /data/games.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CraigKelly/steam-data/HEAD/data/games.py -------------------------------------------------------------------------------- /data/idlist.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CraigKelly/steam-data/HEAD/data/idlist.py -------------------------------------------------------------------------------- /data/pytool: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CraigKelly/steam-data/HEAD/data/pytool -------------------------------------------------------------------------------- /data/requirements.txt: -------------------------------------------------------------------------------- 1 | requests 2 | unidecode 3 | -------------------------------------------------------------------------------- /data/setup: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CraigKelly/steam-data/HEAD/data/setup -------------------------------------------------------------------------------- /report/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CraigKelly/steam-data/HEAD/report/.gitignore -------------------------------------------------------------------------------- /report/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CraigKelly/steam-data/HEAD/report/Makefile -------------------------------------------------------------------------------- /report/SConstruct: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CraigKelly/steam-data/HEAD/report/SConstruct -------------------------------------------------------------------------------- /report/data-flow.eps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CraigKelly/steam-data/HEAD/report/data-flow.eps -------------------------------------------------------------------------------- /report/data-flow.graphml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CraigKelly/steam-data/HEAD/report/data-flow.graphml -------------------------------------------------------------------------------- /report/data-flow.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CraigKelly/steam-data/HEAD/report/data-flow.pdf -------------------------------------------------------------------------------- /report/eh-draft.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CraigKelly/steam-data/HEAD/report/eh-draft.txt -------------------------------------------------------------------------------- /report/freevnon-metacritic-bar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CraigKelly/steam-data/HEAD/report/freevnon-metacritic-bar.png -------------------------------------------------------------------------------- /report/freevnon-ratings-bar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CraigKelly/steam-data/HEAD/report/freevnon-ratings-bar.png -------------------------------------------------------------------------------- /report/genre-metacritic-bar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CraigKelly/steam-data/HEAD/report/genre-metacritic-bar.png -------------------------------------------------------------------------------- /report/genre-ratings-bar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CraigKelly/steam-data/HEAD/report/genre-ratings-bar.png -------------------------------------------------------------------------------- /report/metacritic-recommendations-scatter-all.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CraigKelly/steam-data/HEAD/report/metacritic-recommendations-scatter-all.png -------------------------------------------------------------------------------- /report/metacritic-recommendations-scatter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CraigKelly/steam-data/HEAD/report/metacritic-recommendations-scatter.png -------------------------------------------------------------------------------- /report/numeric-exploration.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CraigKelly/steam-data/HEAD/report/numeric-exploration.png -------------------------------------------------------------------------------- /report/player-count-recommends-distribution.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CraigKelly/steam-data/HEAD/report/player-count-recommends-distribution.png -------------------------------------------------------------------------------- /report/player-count-recommends-jointwithreg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CraigKelly/steam-data/HEAD/report/player-count-recommends-jointwithreg.png -------------------------------------------------------------------------------- /report/price-metacritic-scatter-all.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CraigKelly/steam-data/HEAD/report/price-metacritic-scatter-all.png -------------------------------------------------------------------------------- /report/price-metacritic-scatter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CraigKelly/steam-data/HEAD/report/price-metacritic-scatter.png -------------------------------------------------------------------------------- /report/price-recommendations-scatter-all.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CraigKelly/steam-data/HEAD/report/price-recommendations-scatter-all.png -------------------------------------------------------------------------------- /report/price-recommendations-scatter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CraigKelly/steam-data/HEAD/report/price-recommendations-scatter.png -------------------------------------------------------------------------------- /report/report.bib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CraigKelly/steam-data/HEAD/report/report.bib -------------------------------------------------------------------------------- /report/report.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CraigKelly/steam-data/HEAD/report/report.pdf -------------------------------------------------------------------------------- /report/report.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CraigKelly/steam-data/HEAD/report/report.tex --------------------------------------------------------------------------------