我必须在我的图表中绘制3个不同频道的eeg数据。我想在horozintal线分隔的一个图中绘制所有这些图。 X轴对所有通道都是通用的。
我可以使用add_axes轻松完成此操作。但我想绘制一条与这些轴相交的垂直线。但我无法做到这一点。
目前,我的示例代码如下所示。
from pylab import figure, show, setp
from numpy import sin, cos, exp, pi, arange
t = arange(0.0, 2.0, 0.01)
s1 = sin(2*pi*t)
s2 = exp(-t)
s3 = 200*t
fig = figure()
t = arange(0.0, 2.0, 0.01)
yprops = dict(rotation=0,
horizontalalignment='right',
verticalalignment='center',
x=-0.1)
axprops = dict(yticks=[])
ax1 =fig.add_axes([0.1, 0.5, 0.8, 0.2], **axprops)
ax1.plot(t, s1)
ax1.set_ylabel('S1', **yprops)
axprops['sharex'] = ax1
#axprops['sharey'] = ax1
# force x axes to remain in register, even with toolbar navigation
ax2 = fig.add_axes([0.1, 0.3, 0.8, 0.2], **axprops)
ax2.plot(t, s2)
ax2.set_ylabel('S2', **yprops)
ax3 = fig.add_axes([0.1, 0.1, 0.8, 0.2], **axprops)
ax3.plot(t, s3)
ax3.set_ylabel('S3', **yprops)
# turn off x ticklabels for all but the lower axes
for ax in ax1, ax2:
setp(ax.get_xticklabels(), visible=False)
show()
我希望我的最终图像看起来像下面的图像。在我当前的输出中,我可以获得没有绿色垂直线的相同图形。
任何人都可以帮忙吗?我不想使用子图,我也不想为每个轴添加axvline。
谢谢你, thothadri
答案 0 :(得分:1)
使用
vl_lst = [a.axvline(x_pos, color='g', lw=3, linestyle='-') for a in [ax1, ax2, ax3]]
为每个框架更新:
new_x = X
for v in vl_lst:
v.set_xdata(new_x)