0

我在 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')

上面创建了一个带有小部件滑块的线图,允许一次滚动显示单行的线条我希望能够在不创建滑块小部件的情况下绘制所有线条。关于如何做到这一点的文档很少

4

1 回答 1

0
t.hvplot.line(x='point_index',y='t').overlay() 

.overlay() 函数链接消除了滑块的创建,并显示了 xarray 中的所有行

于 2021-12-11T23:19:05.690 回答