太猛了!姆巴佩生涯400球、且为史上最年轻达成,含金量拉满。你想怎么用这条信息?我可以快速帮你产出:

import pandas as pd
import matplotlib.pyplot as plt
df = pd.read_csv("mbappe_goals.csv", parse_dates=["date"])
df = df.sort_values("date")
df["cumulative"] = df["goals"].cumsum()
fig, ax = plt.subplots(figsize=(9,5))
ax.plot(df["date"], df["cumulative"], color="#1f77b4", lw=2)
ax.set_title("Kylian Mbappé Career Goals (Cumulative)")
ax.set_xlabel("Date"); ax.set_ylabel("Goals")
ax.grid(True, alpha=0.3)
plt.tight_layout(); plt.show()
需要我哪一版?要不要加上同龄段历史球星对比、或按俱乐部/国家队拆分的版本?如果你给我具体数据,我能直接出图和稿。

Copyright 2024 开云(集团)官方网站 - 开云APP官方下载 Kering All Rights by 开云官网