如何在 plotly 中更改 x 轴和 y 轴标签?

How to change the x-axis and y-axis labels in plotly?

我如何更改 plotly 中的 x 和 y 轴标签,因为在 matplotlib 中,我可以简单地使用 plt.xlabel 但我无法在 plotly 中这样做.

通过在数据框中使用此代码:

Date = df[df.Country=="India"].Date
New_cases = df[df.Country=="India"]['7day_rolling_avg']

px.line(df,x=Date, y=New_cases, title="India Daily New Covid Cases")

我得到这个输出:

在这个XY轴被标记为XY 如何将 XY 轴的名称更改为“日期”和“案例”

  • 设置轴的简单案例title
update_layout(
    xaxis_title="Date", yaxis_title="7 day avg"
)

作为 MWE 的完整代码

import pandas as pd
import io, requests

df = pd.read_csv(
    io.StringIO(
        requests.get(
            "https://raw.githubusercontent.com/owid/covid-19-data/master/public/data/vaccinations/vaccinations.csv"
        ).text
    )
)
df["Date"] = pd.to_datetime(df["date"])
df["Country"] = df["location"]
df["7day_rolling_avg"] = df["daily_people_vaccinated_per_hundred"]

Date = df[df.Country == "India"].Date
New_cases = df[df.Country == "India"]["7day_rolling_avg"]

px.line(df, x=Date, y=New_cases, title="India Daily New Covid Cases").update_layout(
    xaxis_title="Date", yaxis_title="7 day avg"
)