|
1 | 1 | """ pyplots.ai |
2 | 2 | bump-basic: Basic Bump Chart |
3 | | -Library: seaborn 0.13.2 | Python 3.13.11 |
4 | | -Quality: 91/100 | Created: 2025-12-23 |
| 3 | +Library: seaborn 0.13.2 | Python 3.14.3 |
| 4 | +Quality: 92/100 | Updated: 2026-02-22 |
5 | 5 | """ |
6 | 6 |
|
7 | 7 | import matplotlib.pyplot as plt |
|
10 | 10 |
|
11 | 11 |
|
12 | 12 | # Data - Sports league standings over 6 weeks |
13 | | -data = { |
14 | | - "Team": ["Lions"] * 6 + ["Tigers"] * 6 + ["Bears"] * 6 + ["Eagles"] * 6 + ["Wolves"] * 6, |
15 | | - "Week": ["Week 1", "Week 2", "Week 3", "Week 4", "Week 5", "Week 6"] * 5, |
16 | | - "Rank": [ |
17 | | - 3, |
18 | | - 2, |
19 | | - 1, |
20 | | - 1, |
21 | | - 2, |
22 | | - 1, # Lions - start mid, climb to top |
23 | | - 1, |
24 | | - 1, |
25 | | - 2, |
26 | | - 3, |
27 | | - 1, |
28 | | - 2, # Tigers - start top, fluctuate |
29 | | - 5, |
30 | | - 4, |
31 | | - 4, |
32 | | - 2, |
33 | | - 3, |
34 | | - 3, # Bears - steady climb from bottom |
35 | | - 2, |
36 | | - 3, |
37 | | - 3, |
38 | | - 4, |
39 | | - 4, |
40 | | - 5, # Eagles - gradual decline |
41 | | - 4, |
42 | | - 5, |
43 | | - 5, |
44 | | - 5, |
45 | | - 5, |
46 | | - 4, # Wolves - mostly bottom, slight recovery |
47 | | - ], |
48 | | -} |
49 | | -df = pd.DataFrame(data) |
| 13 | +teams = ["Lions", "Tigers", "Bears", "Eagles", "Wolves"] |
| 14 | +weeks = ["Week 1", "Week 2", "Week 3", "Week 4", "Week 5", "Week 6"] |
| 15 | +ranks = [ |
| 16 | + 3, |
| 17 | + 2, |
| 18 | + 1, |
| 19 | + 1, |
| 20 | + 2, |
| 21 | + 1, # Lions - start mid, climb to top |
| 22 | + 1, |
| 23 | + 1, |
| 24 | + 2, |
| 25 | + 3, |
| 26 | + 1, |
| 27 | + 2, # Tigers - start top, fluctuate |
| 28 | + 5, |
| 29 | + 4, |
| 30 | + 4, |
| 31 | + 2, |
| 32 | + 3, |
| 33 | + 3, # Bears - steady climb from bottom |
| 34 | + 2, |
| 35 | + 3, |
| 36 | + 3, |
| 37 | + 4, |
| 38 | + 4, |
| 39 | + 5, # Eagles - gradual decline |
| 40 | + 4, |
| 41 | + 5, |
| 42 | + 5, |
| 43 | + 5, |
| 44 | + 5, |
| 45 | + 4, # Wolves - mostly bottom, slight recovery |
| 46 | +] |
| 47 | +df = pd.DataFrame( |
| 48 | + {"Team": [team for team in teams for _ in weeks], "Competition Week": weeks * len(teams), "League Position": ranks} |
| 49 | +) |
50 | 50 |
|
51 | | -# Colors for each team - Python Blue first, then distinct colorblind-safe colors |
52 | | -palette = ["#306998", "#FFD43B", "#E74C3C", "#2ECC71", "#9B59B6"] |
| 51 | +# Colorblind-safe muted palette via seaborn (Python Blue first) |
| 52 | +palette = sns.color_palette(["#306998", "#D4823E", "#8B6CAF", "#3A9E8F", "#C27185"]) |
| 53 | +markers = {"Lions": "o", "Tigers": "X", "Bears": "s", "Eagles": "P", "Wolves": "D"} |
53 | 54 |
|
54 | | -# Create plot |
| 55 | +# Refined theme |
| 56 | +sns.set_theme(style="whitegrid", rc={"grid.linestyle": "--", "grid.alpha": 0.15}) |
55 | 57 | fig, ax = plt.subplots(figsize=(16, 9)) |
56 | 58 |
|
57 | | -sns.lineplot(data=df, x="Week", y="Rank", hue="Team", marker="o", markersize=18, linewidth=4, palette=palette, ax=ax) |
| 59 | +sns.lineplot( |
| 60 | + data=df, |
| 61 | + x="Competition Week", |
| 62 | + y="League Position", |
| 63 | + hue="Team", |
| 64 | + style="Team", |
| 65 | + markers=markers, |
| 66 | + dashes=False, |
| 67 | + markersize=18, |
| 68 | + linewidth=4, |
| 69 | + palette=palette, |
| 70 | + hue_order=teams, |
| 71 | + sort=False, |
| 72 | + ax=ax, |
| 73 | +) |
58 | 74 |
|
59 | 75 | # Invert y-axis so rank 1 is at top |
60 | 76 | ax.invert_yaxis() |
61 | | - |
62 | | -# Set y-axis ticks to integer ranks only |
63 | 77 | ax.set_yticks([1, 2, 3, 4, 5]) |
| 78 | +ax.xaxis.grid(False) |
| 79 | +sns.despine(ax=ax) |
64 | 80 |
|
65 | | -# Styling |
66 | | -ax.set_xlabel("Week", fontsize=20) |
67 | | -ax.set_ylabel("Rank", fontsize=20) |
68 | | -ax.set_title("bump-basic · seaborn · pyplots.ai", fontsize=24) |
| 81 | +# Style |
| 82 | +ax.set_xlabel("Competition Week", fontsize=20) |
| 83 | +ax.set_ylabel("League Position (Rank)", fontsize=20) |
| 84 | +ax.set_title("bump-basic · seaborn · pyplots.ai", fontsize=24, fontweight="medium", pad=20) |
69 | 85 | ax.tick_params(axis="both", labelsize=16) |
70 | | -ax.grid(True, alpha=0.3, linestyle="--") |
71 | 86 |
|
72 | | -# Legend styling - placed outside plot area |
73 | | -ax.legend(title="Team", fontsize=14, title_fontsize=16, loc="center left", bbox_to_anchor=(1, 0.5)) |
| 87 | +# End-of-line labels for direct identification and storytelling |
| 88 | +final_positions = {team: ranks[i * 6 + 5] for i, team in enumerate(teams)} |
| 89 | +for i, team in enumerate(teams): |
| 90 | + rank = final_positions[team] |
| 91 | + ax.annotate( |
| 92 | + team, |
| 93 | + xy=(5, rank), |
| 94 | + xytext=(12, 0), |
| 95 | + textcoords="offset points", |
| 96 | + fontsize=15, |
| 97 | + fontweight="bold" if rank <= 2 else "normal", |
| 98 | + color=palette[i], |
| 99 | + va="center", |
| 100 | + ) |
| 101 | + |
| 102 | +# Remove legend (replaced by end-of-line labels for cleaner design) |
| 103 | +ax.get_legend().remove() |
74 | 104 |
|
75 | 105 | plt.tight_layout() |
76 | 106 | plt.savefig("plot.png", dpi=300, bbox_inches="tight") |
0 commit comments