如何将 y-limits (ylim) 添加到使用 Holoviews Datashader 创建的绘图中?
我已经尝试了 hv.Dimension 函数并添加了 ylim=() 参数,但它要么是拒绝它的 Holoview,要么是不理解参数的 Datashader 函数。
plot_Z1 = datashade(hv.Curve(df).redim(y=hv.Dimension('y', range=(-50,50))))
plot_Z2 = datashade(hv.Curve(df).redim(y=hv.Dimension('y', range=(-50,50))))
plot_Z1.options(width=500) + plot_Z2.options(width=500)
ylim 未被识别且 hv.Dimension 无效