gpt4 book ai didi

python - 如何使用 slider 同时更新更多的线图?

转载 作者:行者123 更新时间:2023-12-05 07:06:06 25 4
gpt4 key购买 nike

这是我的第一个问题代码,所以请耐心等待我是一个完全的初学者!我使用三个库(tkiner、pandas 和 matplotlib)开发了一个小型桌面应用程序,这个应用程序从 csv 中绘制了几个图表.其中一个图表使用 slider 动态更新,该 slider 更改 x 值乘以的系数。

我的问题是:如何同时更改图例以及 x 轴的限制?

我试图访问 ax2 的标签并为它们分配更新后的值,但我找不到这样做的方法。有没有像l.set_label(label=name +"Nspt x f1={}".format(f1))这样的东西?

我附上了一个显示问题的小代码部分。也是情节的图像。提前感谢谁会花时间帮助我。

initial_f1=5

axcolor ='darkgray'
axf1 = plt.axes([0.6,0.01, 0.3, 0.01], facecolor=axcolor)
sf1=Slider(axf1,"f1",4.0,6.5,valinit=initial_f1,valstep=0.5)

for name, group in bh_groups:
ax1.plot(group["Nspt"],group["ztest"],marker="X",linestyle="",ms=8, label=name)
ax2.plot(group["cu"],group["ztest"],marker="o",linestyle="",ms=8,label=name +" Triaxial tests")
l,=ax2.plot(group["Nspt"]*initial_f1,group["ztest"],marker="X",linestyle="",ms=8,label=name +" Nspt x f1={}".format(initial_f1))


def update(val):

f1 = sf1.val
l.set_xdata(f1*group["Nspt"])
fig1.canvas.draw_idle()

sf1.on_changed(update)



ax1.set_xlabel('Nspt',fontweight="bold")
ax1.xaxis.set_label_position('top')
ax1.xaxis.tick_top()
ax1.set_ylabel("z [mOD]")

ax2.set_xlabel('Undrained Shear Strength, su [kPa]',fontweight="bold")
ax2.xaxis.set_label_position('top')
ax2.xaxis.tick_top()
ax2.set_ylabel("z [mOD]")

输出:

enter image description here

已编辑:我也设法更新了图例,现在如果我想让 slider 同时作用于更多行怎么办?这些线由一个函数描述,并依赖于同一个变量 f1。我还没有找到解决方案,有什么想法吗?

fig1, (ax1,ax2) = plt.subplots(nrows=1,ncols=2)
fig1.canvas.set_window_title('Data by borehole')

initial_f1=5

axcolor ='darkgray'
axf1 = plt.axes([0.6,0.01, 0.3, 0.01], facecolor=axcolor)
sf1=Slider(axf1,"f1",4.0,6.5,valinit=initial_f1,valstep=0.5)



for name, group in bh_groups:
ax1.plot(group["Nspt"],group["ztest"],marker="X",linestyle="",ms=8, label=name)
ax2.plot(group["cu"],group["ztest"],marker="o",linestyle="",ms=8,label=name +" Triaxial tests")

l,=ax2.plot(group["Nspt"]*initial_f1,group["ztest"],marker="X",linestyle="",ms=8,label=name +" Nspt x f1={}".format(initial_f1))





def update(val):
f1 = val

l.set_xdata(f1*group["Nspt"])

l.set_label(name +" Nspt x f1={}".format(f1))
ax2.legend(loc="best")

sf1.on_changed(update)
fig1.canvas.draw_idle()


ax1.set_xlabel('Nspt',fontweight="bold")
ax1.xaxis.set_label_position('top')
ax1.xaxis.tick_top()
ax1.set_ylabel("z [mOD]")

ax2.set_xlabel('Undrained Shear Strength, su [kPa]',fontweight="bold")
ax2.xaxis.set_label_position('top')
ax2.xaxis.tick_top()
ax2.set_ylabel("z [mOD]")

ax1.legend(loc="best")

plt.tight_layout()



plt.show()

enter image description here

最佳答案

这是一个简单的例子,其中一个 slider 控制:

  • 两行
  • 两个标签 + 图例条目
  • x轴的极限

两个函数不是很有创意:y1=sin(alpha*x)y2=cos(alpha*x)x 轴上的限制是:[0, 3*pi*alpha]

import numpy as np
import matplotlib.pyplot as plt
from matplotlib.widgets import Slider

x = np.linspace(0, np.pi * 2, 1000)
y1 = np.sin(1*x)
y2 = np.cos(1*x)

fig, ax = plt.subplots()
fig.subplots_adjust(bottom=0.25)
ax.set_xlim(0, 2*np.pi)
h1 = ax.plot(x, y1, label='dummy')[0]
h2 = ax.plot(x, y2, label='dummy')[0]

ax.legend(loc='upper right')
slider_alpha = Slider(plt.axes([0.2, 0.1, 0.6, 0.05]), 'alpha',
valmin=1, valmax=2, valinit=1, valstep=0.01)

def update(val):
# Update lines
x = np.linspace(0, np.pi*3*val, 1000)
y1 = np.sin(x*val)
y2 = np.cos(x*val)
h1.set_data(x, y1)
h2.set_data(x, y2)

# Update labels + legend()
h1.set_label("y=sin(x*{:.3})".format(float(val)))
h2.set_label("y=cos(x*{:.3})".format(float(val)))
ax.legend(loc='upper right')

# Update x limits
ax.set_xlim(0, np.pi*3*val)

slider_alpha.on_changed(update)

enter image description here

关于python - 如何使用 slider 同时更新更多的线图?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/62604048/

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