DateFormatTicker无法用于hvplot中的条形图

时间:2019-12-23 11:58:16

标签: python hvplot panel-pyviz

我尝试使用带有可读x-Tick标签的hvplots创建一个条形图。 引用hvplots documentation,它应该可以直接使用,对于正常的线图,这是正确的

import hvplot.pandas
from bokeh.sampledata.sea_surface_temperature import sea_surface_temperature as sst
sst.hvplot()

开箱即用,并显示带有良好x轴标签的图形 enter image description here

但是如果我想将其显示为条形图,逻辑就会中断

sst.hvplot.bar()

导致无法读取的x标签。 enter image description here

也定义了DateFormatter的将被忽略。我考虑过自动删除条目并重新格式化其余条目的格式,以便仅显示少数条目,并且这些条目可读,但看起来像一个烦人的解决方法。

有没有不破坏自动标签的更好的解决方案。还是这是hvplot错误或什至是预期的行为,因为您不应该在时间轴上使用条形图?

0 个答案:

没有答案