我有一个代码,可以使用Jupyter Notebook中的bokeh库绘制热图。我的x和y轴使用迭代,即:
yvalue = np.linspace(0.1,1,N) # This is 1 of the two independent variables.
现在,当我绘制两个图时,一切看起来都很好。但是我需要绘制3个图。 当我绘制3个图时,滑杆小部件位于第三个图的顶部。
我尝试使用https://bokeh.pydata.org/en/latest/docs/user_guide/layout.html 甚至http://bokeh.pydata.org/en/0.10.0/docs/user_guide/layout.html来解决我的问题。
由于我提到的迭代,这些对我不起作用。这让我说错了
Not compatible with iterations for gridline
ValueError: Only LayoutDOM items can be inserted into a column when I use the column option.
问题:如何在第一个链接中使用类似于垂直或网格线示例的格式来设置图表格式,但不会因我的迭代和滑块小部件而给我带来麻烦。