Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
18 changes: 18 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -268,3 +268,21 @@ A big thank you to all our amazing contributors!
</a>

Contributors wall made with [contrib.rocks](https://contrib.rocks).
### Exemple d’utilisation simple

Voici un exemple minimal pour générer un rapport avec `ydata-profiling` :

```python
import pandas as pd
from ydata_profiling import ProfileReport

# Exemple de DataFrame simple
df = pd.DataFrame({
"Mois": ["Janvier", "Février", "Mars"],
"Ventes": [1200, 1500, 1700],
"Coût": [800, 900, 1000]
})

# Génération du rapport
profile = ProfileReport(df, title="Rapport de ventes", explorative=True)
profile.to_file("rapport_ventes.html")