Ajout analyse de rapports

This commit is contained in:
Jérôme Delacotte
2025-05-10 17:09:59 +02:00
parent c8fd868b6b
commit adef1736e5
5 changed files with 89 additions and 3 deletions

View File

@@ -9,3 +9,12 @@ docker build -t flask-web-app .
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")