├── .deepsource.toml ├── .gitignore ├── code ├── __pycache__ │ └── kmeans.cpython-35.pyc ├── bitcoin-realtime │ ├── app.py │ ├── static │ │ ├── css │ │ │ ├── .sass-cache │ │ │ │ └── c426e643966906c2b6f1f2d4908ed0710af48908 │ │ │ │ │ └── window1.scssc │ │ │ ├── window.css │ │ │ ├── window1.css │ │ │ ├── window1.css.map │ │ │ ├── window1.scss │ │ │ └── window2.css │ │ └── images │ │ │ ├── profile.png │ │ │ └── users.png │ └── templates │ │ ├── base.html │ │ ├── index.html │ │ ├── index1.html │ │ └── sentiment.html ├── graph-code │ ├── add_to_data.py │ ├── graph_analytics.py │ ├── input.csv │ ├── join_data.py │ ├── join_data.pyc │ ├── load_data.py │ ├── main.py │ └── utils.py ├── identity_scraper │ ├── __pycache__ │ │ └── blocktrail.cpython-35.pyc │ ├── blockinfo.py │ ├── btc.py │ ├── cypher.py │ ├── explorer.py │ ├── sort_categories.py │ ├── wallet_info.py │ └── whoiswho.py └── twitter-sentiment │ ├── __pycache__ │ └── config.cpython-35.pyc │ ├── config.py │ ├── config.pyc │ ├── output.csv │ ├── output1.csv │ └── sentiment.py ├── notebooks ├── Build supervised learning models.ipynb ├── Calculate users, add graph metrics, add categorical tags.ipynb ├── Cluster Transactions.ipynb ├── Data exploration.ipynb ├── Plot Categories.ipynb ├── Plot Network Stats.ipynb ├── Sample Data for Testing.ipynb └── Sentiment Analysis.ipynb ├── readme.md └── report.pdf /.deepsource.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archienorman11/thesis-bitcoin-clustering/HEAD/.deepsource.toml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archienorman11/thesis-bitcoin-clustering/HEAD/.gitignore -------------------------------------------------------------------------------- /code/__pycache__/kmeans.cpython-35.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archienorman11/thesis-bitcoin-clustering/HEAD/code/__pycache__/kmeans.cpython-35.pyc -------------------------------------------------------------------------------- /code/bitcoin-realtime/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archienorman11/thesis-bitcoin-clustering/HEAD/code/bitcoin-realtime/app.py -------------------------------------------------------------------------------- /code/bitcoin-realtime/static/css/.sass-cache/c426e643966906c2b6f1f2d4908ed0710af48908/window1.scssc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archienorman11/thesis-bitcoin-clustering/HEAD/code/bitcoin-realtime/static/css/.sass-cache/c426e643966906c2b6f1f2d4908ed0710af48908/window1.scssc -------------------------------------------------------------------------------- /code/bitcoin-realtime/static/css/window.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archienorman11/thesis-bitcoin-clustering/HEAD/code/bitcoin-realtime/static/css/window.css -------------------------------------------------------------------------------- /code/bitcoin-realtime/static/css/window1.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archienorman11/thesis-bitcoin-clustering/HEAD/code/bitcoin-realtime/static/css/window1.css -------------------------------------------------------------------------------- /code/bitcoin-realtime/static/css/window1.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archienorman11/thesis-bitcoin-clustering/HEAD/code/bitcoin-realtime/static/css/window1.css.map -------------------------------------------------------------------------------- /code/bitcoin-realtime/static/css/window1.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archienorman11/thesis-bitcoin-clustering/HEAD/code/bitcoin-realtime/static/css/window1.scss -------------------------------------------------------------------------------- /code/bitcoin-realtime/static/css/window2.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archienorman11/thesis-bitcoin-clustering/HEAD/code/bitcoin-realtime/static/css/window2.css -------------------------------------------------------------------------------- /code/bitcoin-realtime/static/images/profile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archienorman11/thesis-bitcoin-clustering/HEAD/code/bitcoin-realtime/static/images/profile.png -------------------------------------------------------------------------------- /code/bitcoin-realtime/static/images/users.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archienorman11/thesis-bitcoin-clustering/HEAD/code/bitcoin-realtime/static/images/users.png -------------------------------------------------------------------------------- /code/bitcoin-realtime/templates/base.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archienorman11/thesis-bitcoin-clustering/HEAD/code/bitcoin-realtime/templates/base.html -------------------------------------------------------------------------------- /code/bitcoin-realtime/templates/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archienorman11/thesis-bitcoin-clustering/HEAD/code/bitcoin-realtime/templates/index.html -------------------------------------------------------------------------------- /code/bitcoin-realtime/templates/index1.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archienorman11/thesis-bitcoin-clustering/HEAD/code/bitcoin-realtime/templates/index1.html -------------------------------------------------------------------------------- /code/bitcoin-realtime/templates/sentiment.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archienorman11/thesis-bitcoin-clustering/HEAD/code/bitcoin-realtime/templates/sentiment.html -------------------------------------------------------------------------------- /code/graph-code/add_to_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archienorman11/thesis-bitcoin-clustering/HEAD/code/graph-code/add_to_data.py -------------------------------------------------------------------------------- /code/graph-code/graph_analytics.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archienorman11/thesis-bitcoin-clustering/HEAD/code/graph-code/graph_analytics.py -------------------------------------------------------------------------------- /code/graph-code/input.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archienorman11/thesis-bitcoin-clustering/HEAD/code/graph-code/input.csv -------------------------------------------------------------------------------- /code/graph-code/join_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archienorman11/thesis-bitcoin-clustering/HEAD/code/graph-code/join_data.py -------------------------------------------------------------------------------- /code/graph-code/join_data.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archienorman11/thesis-bitcoin-clustering/HEAD/code/graph-code/join_data.pyc -------------------------------------------------------------------------------- /code/graph-code/load_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archienorman11/thesis-bitcoin-clustering/HEAD/code/graph-code/load_data.py -------------------------------------------------------------------------------- /code/graph-code/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archienorman11/thesis-bitcoin-clustering/HEAD/code/graph-code/main.py -------------------------------------------------------------------------------- /code/graph-code/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archienorman11/thesis-bitcoin-clustering/HEAD/code/graph-code/utils.py -------------------------------------------------------------------------------- /code/identity_scraper/__pycache__/blocktrail.cpython-35.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archienorman11/thesis-bitcoin-clustering/HEAD/code/identity_scraper/__pycache__/blocktrail.cpython-35.pyc -------------------------------------------------------------------------------- /code/identity_scraper/blockinfo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archienorman11/thesis-bitcoin-clustering/HEAD/code/identity_scraper/blockinfo.py -------------------------------------------------------------------------------- /code/identity_scraper/btc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archienorman11/thesis-bitcoin-clustering/HEAD/code/identity_scraper/btc.py -------------------------------------------------------------------------------- /code/identity_scraper/cypher.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archienorman11/thesis-bitcoin-clustering/HEAD/code/identity_scraper/cypher.py -------------------------------------------------------------------------------- /code/identity_scraper/explorer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archienorman11/thesis-bitcoin-clustering/HEAD/code/identity_scraper/explorer.py -------------------------------------------------------------------------------- /code/identity_scraper/sort_categories.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archienorman11/thesis-bitcoin-clustering/HEAD/code/identity_scraper/sort_categories.py -------------------------------------------------------------------------------- /code/identity_scraper/wallet_info.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archienorman11/thesis-bitcoin-clustering/HEAD/code/identity_scraper/wallet_info.py -------------------------------------------------------------------------------- /code/identity_scraper/whoiswho.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archienorman11/thesis-bitcoin-clustering/HEAD/code/identity_scraper/whoiswho.py -------------------------------------------------------------------------------- /code/twitter-sentiment/__pycache__/config.cpython-35.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archienorman11/thesis-bitcoin-clustering/HEAD/code/twitter-sentiment/__pycache__/config.cpython-35.pyc -------------------------------------------------------------------------------- /code/twitter-sentiment/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archienorman11/thesis-bitcoin-clustering/HEAD/code/twitter-sentiment/config.py -------------------------------------------------------------------------------- /code/twitter-sentiment/config.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archienorman11/thesis-bitcoin-clustering/HEAD/code/twitter-sentiment/config.pyc -------------------------------------------------------------------------------- /code/twitter-sentiment/output.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archienorman11/thesis-bitcoin-clustering/HEAD/code/twitter-sentiment/output.csv -------------------------------------------------------------------------------- /code/twitter-sentiment/output1.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archienorman11/thesis-bitcoin-clustering/HEAD/code/twitter-sentiment/output1.csv -------------------------------------------------------------------------------- /code/twitter-sentiment/sentiment.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archienorman11/thesis-bitcoin-clustering/HEAD/code/twitter-sentiment/sentiment.py -------------------------------------------------------------------------------- /notebooks/Build supervised learning models.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archienorman11/thesis-bitcoin-clustering/HEAD/notebooks/Build supervised learning models.ipynb -------------------------------------------------------------------------------- /notebooks/Calculate users, add graph metrics, add categorical tags.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archienorman11/thesis-bitcoin-clustering/HEAD/notebooks/Calculate users, add graph metrics, add categorical tags.ipynb -------------------------------------------------------------------------------- /notebooks/Cluster Transactions.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archienorman11/thesis-bitcoin-clustering/HEAD/notebooks/Cluster Transactions.ipynb -------------------------------------------------------------------------------- /notebooks/Data exploration.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archienorman11/thesis-bitcoin-clustering/HEAD/notebooks/Data exploration.ipynb -------------------------------------------------------------------------------- /notebooks/Plot Categories.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archienorman11/thesis-bitcoin-clustering/HEAD/notebooks/Plot Categories.ipynb -------------------------------------------------------------------------------- /notebooks/Plot Network Stats.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archienorman11/thesis-bitcoin-clustering/HEAD/notebooks/Plot Network Stats.ipynb -------------------------------------------------------------------------------- /notebooks/Sample Data for Testing.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archienorman11/thesis-bitcoin-clustering/HEAD/notebooks/Sample Data for Testing.ipynb -------------------------------------------------------------------------------- /notebooks/Sentiment Analysis.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archienorman11/thesis-bitcoin-clustering/HEAD/notebooks/Sentiment Analysis.ipynb -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archienorman11/thesis-bitcoin-clustering/HEAD/readme.md -------------------------------------------------------------------------------- /report.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archienorman11/thesis-bitcoin-clustering/HEAD/report.pdf --------------------------------------------------------------------------------