Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/mariusgiger/ethereum-feeestimator-analysis
Analysis of the prediction accuracy of different fee estimation methods.
https://github.com/mariusgiger/ethereum-feeestimator-analysis
Last synced: 12 days ago
JSON representation
Analysis of the prediction accuracy of different fee estimation methods.
- Host: GitHub
- URL: https://github.com/mariusgiger/ethereum-feeestimator-analysis
- Owner: mariusgiger
- Created: 2018-12-23T10:16:41.000Z (about 6 years ago)
- Default Branch: master
- Last Pushed: 2019-01-04T17:53:12.000Z (about 6 years ago)
- Last Synced: 2024-11-09T05:38:07.451Z (2 months ago)
- Language: Jupyter Notebook
- Size: 609 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Ethereum Fee Estimation Analysis
Analysis of the prediction accuracy of different fee estimation methods.
## 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
```