git clone https://github.com/Uiuran/mindminers-proj.git
cd ~/path/to/dir/mindminers-proj/
conda create --name calculadora python=3.6
conda activate calculadora
pip install . --use-feature=2020-resolver
import mmcalculadora as calc
calculadora=calc.IRCalculadora('data.csv')
calculadora()
# Sumário mensal de renda e impostos
print(calculadora.summary)
# Evolução de operações, lucros e prejuízos
print(calculadora.serie)
# Outros dados
calculadora.load_dataset('another_data.csv')
calculadora()
...
or in the notebooks folder:
jupyter-notebook rendimento-absoluto.ipynb
See the notebook folder for that. The demonstrative script is a jupyter notebook since it allows for hover interativity with Plotly.
08-09-2020 Beta - (Projeto Concluído/Funcional)
03-09-2020 Alpha - (Parte1 - Calculadora)