gpt4 book ai didi

python - Plotly:如何使用 plotly express 在辅助 y 轴上绘图

转载 作者:行者123 更新时间:2023-12-03 15:27:23 25 4
gpt4 key购买 nike

我如何利用 plotly.express 在一个 Pandas 数据框中的两个 yaxis 上绘制多条线?
我发现这对于绘制包含特定子字符串的所有列非常有用:

    fig = px.line(df, y=df.filter(regex="Linear").columns, render_mode="webgl")
因为我不想遍历所有过滤的列并使用以下内容:
    fig.add_trace(go.Scattergl(x=df["Time"], y=df["Linear-"]))
在每次迭代中。

最佳答案

我花了一些时间来摆弄这个,但是我觉得这对某些人可能有用。

# import some stuff
import plotly.express as px
from plotly.subplots import make_subplots
import pandas as pd
import numpy as np

# create some data
df = pd.DataFrame()
n = 50
df["Time"] = np.arange(n)
df["Linear-"] = np.arange(n)+np.random.rand(n)
df["Linear+"] = np.arange(n)+np.random.rand(n)
df["Log-"] = np.arange(n)+np.random.rand(n)
df["Log+"] = np.arange(n)+np.random.rand(n)
df.set_index("Time", inplace=True)

subfig = make_subplots(specs=[[{"secondary_y": True}]])

# create two independent figures with px.line each containing data from multiple columns
fig = px.line(df, y=df.filter(regex="Linear").columns, render_mode="webgl",)
fig2 = px.line(df, y=df.filter(regex="Log").columns, render_mode="webgl",)

fig2.update_traces(yaxis="y2")

subfig.add_traces(fig.data + fig2.data)
subfig.layout.xaxis.title="Time"
subfig.layout.yaxis.title="Linear Y"
subfig.layout.yaxis2.type="log"
subfig.layout.yaxis2.title="Log Y"
# recoloring is necessary otherwise lines from fig und fig2 would share each color
# e.g. Linear-, Log- = blue; Linear+, Log+ = red... we don't want this
subfig.for_each_trace(lambda t: t.update(line=dict(color=t.marker.color)))
subfig.show()
Finished graph
诀窍
subfig.for_each_trace(lambda t: t.update(line=dict(color=t.marker.color)))
我从 nicolaskruchten 那里得到的: https://stackoverflow.com/a/60031260

关于python - Plotly:如何使用 plotly express 在辅助 y 轴上绘图,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/62853539/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com