First things you'll need to do is get your python3 and pip3 installed and working.
sudo pip3 install jupyter
This will install the jupyter notebook server. It's awesome. You'll see it work in a minute.
git clone https://github.com/zacblanco/adac.git
cd adac/
The file is attached to this gist. Download it and save it within the repository.
wget https://gist.githubusercontent.com/ZacBlanco/d9049f17f7aef07e3ce90670d165f69a/raw/f08ca018fdb0140933f88efb52e69c1998d7fcfc/ConsensusAnalysis.ipynb
Now that because you installed jupyter earlier you should be able to run jupyter in the command line
jupyer notebook
This will launch the jupyer notebook application on port 8888 and its kernels. It should open a new web browser tab.
The tab will show your filesystem. Navigate into the adac/ folder if you're not already there and open the
ConsensusAnalysis.ipynb file. You will now see the cell blocks and a couple functions to display graphs.
You can run the python cells using Ctrl-Enter
Mess around with the code and look at the peewee documentation on how to make database accesses to see more of the data.