gpt4 book ai didi

python - 使用 matplotlib slider 更新等高线图级别

转载 作者:太空宇宙 更新时间:2023-11-04 03:38:20 24 4
gpt4 key购买 nike

我正在尝试使用 slider 更改 matplotlib 填充等高线图上的颜色级别值。即 contourf(x,y,z,np.linspace(a,b,n)),其中 slider 将控制 a 和 b,并在移动 slider 时更改绘图颜色级别。以下代码采用列格式数据将其转换为 contourf 所需的形式,然后实现 slider 。这是我试过的:

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

data=np.genfromtxt('file.dat',skip_header=1)
len=np.sqrt(data[:,0].size)
x=np.reshape(data[:,0],(len,len))
y=np.reshape(data[:,1],(len,len))
z=np.reshape(data[:,3],(len,len))

l=plt.contourf(x,y,z,np.linspace(0,100,255))

axmax = plt.axes([0.25, 0.1, 0.65, 0.03]) #slider location and size
axmin = plt.axes([0.25, 0.15, 0.65, 0.03])
smax = Slider(axmax, 'Max',0, 100, 50) #slider properties
smin = Slider(axmin, 'Min', 0, 100, 0)

def update(val):
l.levels(np.linspace(smin.val,smax.val,255))#changing levels of plot
fig.canvas.draw_idle() #line that throws error
smax.on_changed(update)
smin.on_changed(update)

plt.show()

移动 slider 时会抛出大量 matplotlib 错误,相关错误是“TypeError:'numpy.ndarray' object is not callable',由行抛出

fig.canvas.draw_idle()

最佳答案

问题是 l.levels 是一个数组,因此您必须更改此数组中的值。在我的测试中,更改这些值不会导致绘图更新。所以另一种解决方案是清除轴并重新绘制绘图。

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

data=np.random.random([25,4])
data = data*100
len=np.sqrt(data[:,0].size)
x=np.reshape(data[:,0],(len,len))
y=np.reshape(data[:,1],(len,len))
z=np.reshape(data[:,3],(len,len))

l=plt.contourf(x,y,z,np.linspace(0,100,255))
contour_axis = plt.gca()

axmax = plt.axes([0.25, 0.1, 0.65, 0.03]) #slider location and size
axmin = plt.axes([0.25, 0.15, 0.65, 0.03])
smax = Slider(axmax, 'Max',0, 100, 50) #slider properties
smin = Slider(axmin, 'Min', 0, 100, 0)


def update(val):
contour_axis.clear()
contour_axis.contourf(x,y,z,np.linspace(smin.val,smax.val,255))
plt.draw()
smax.on_changed(update)
smin.on_changed(update)

plt.show()

关于python - 使用 matplotlib slider 更新等高线图级别,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/27799527/

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