# FreqStats ## Construction docker build -t flask-web-app . ## Lancement docker run -it -p 5000:5000 -v $(pwd)/src/:/src -v /home/jerome/Perso/freqtradeDocker/user_data/:/mnt/external flask-web-app bash puis : python3 app.py ## librairies ### Génération d'un rapport sur le dataframe ydata-profiling : https://github.com/ydataai/ydata-profiling profile = ProfileReport(dataframe, tsmode=True, sortby="date", title="Time-Series EDA") profile.to_file("report_timeseries.html")