我有一个散点图,想在其中添加一条垂直线作为标记。
但是散点图的 x 范围为 0 到 2,但我的垂直线位于 x 范围 6,因此它超出了我的散点图的 x 范围,并且不会自动显示。
无论我的绘图的 x 范围如何,我该怎么做才能显示我的垂直线?
示例代码:
import holoviews as hv
hv.extension('bokeh')
# my vline is not shown automatically because it's
# outside the range of my hv.Curve()
hv.Curve([[0,3], [1,4], [2,5]]) * hv.VLine(6)
示例图(不显示 Vline):