File size: 1,180 Bytes
ffe1030
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
"""Module de graphiques pour l'analyse rugby"""

from .player_charts import (
    create_top_players_chart,
    create_player_profile_chart,
    create_player_evolution_chart,
    create_player_comparison_radar,
    create_player_actions_pie,
    create_player_level_distribution,
    create_performance_heatmap,         # ← NOUVEAU
    create_team_activity_heatmap,        # ← NOUVEAU
    create_performance_comparison_chart,  # ← NOUVEAU
    create_performance_violin_chart
)

from .match_charts import (
    create_matches_ranking_chart,
    create_match_comparison_chart,
    create_matches_activity_chart,
    create_actions_distribution_chart
)

__all__ = [
    'create_top_players_chart',
    'create_player_profile_chart', 
    'create_player_evolution_chart',
    'create_player_comparison_radar',
    'create_player_actions_pie',
    'create_player_level_distribution',
    'create_performance_heatmap',       # ← NOUVEAU
    'create_team_activity_heatmap',     # ← NOUVEAU
    'create_matches_ranking_chart',
    'create_match_comparison_chart',
    'create_matches_activity_chart',
    'create_actions_distribution_chart'
]