Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/mariusgiger/bitcoin-feeestimator-analysis

Analysis of the prediction accuracy of different fee estimation methods.
https://github.com/mariusgiger/bitcoin-feeestimator-analysis

Last synced: 12 days ago
JSON representation

Analysis of the prediction accuracy of different fee estimation methods.

Awesome Lists containing this project

README

        

# Bitcoin Fee Estimation Analysis

Analysis of the prediction accuracy of different fee estimation methods for Bitcoin

## Dev Setup

Setup uses [Virtualenv](https://virtualenv.pypa.io/en/stable/).

```bash
pip3 install virtualenv
virtualenv -p python3 .
source ./bin/activate
python3 -m pip install --upgrade pip
python3 -m pip install jupyter
python3 -m pip install pandas
python3 -m pip install matplotlib
```

## Work

```bash
source ./bin/activate
jupyter notebook
```

leave virtual env using the following command

```bash
deactivate
```