我在 xarray 数组中有多个 ytraces 数据。数据跟踪选择可以通过
t=s_xr_all.sel(trace_index=slice(0,2,1),xy='y')
# trace_index and xy are dimension names and above selects subset of 3 traces (lines) into t
t.name='t'
t.hvplot.line(x='point_index',y='t')
上面创建了一个带有小部件滑块的线图,允许一次滚动显示单行的线条我希望能够在不创建滑块小部件的情况下绘制所有线条。关于如何做到这一点的文档很少