具有负值的散景区域图?

时间:2016-03-18 01:01:02

标签: python plot bokeh

所以可能有一个比“负面区域”更好的术语。我有数据代表几个不同时间片的情绪。每种情绪的价值都类似于阈值情绪类别的地形。我要显示的区域图看起来像

enter image description here

http://carnby.github.io/sentiment-visualization-widgets.html - 我注意到他们的Y轴没有标记,所以我猜想是为这个情节构建数据的方法。

我在这里有一个用于计算数据的代码要点,以及用于测试绘图的一小部分:https://gist.github.com/msarahan/2c590a5d8e5c3573cddd

我的情节代码是:

from bokeh.charts import Area
from bokeh.io import output_notebook, show

output_notebook()

f = Area(input_data[:5], xlabel="post timestamp", ylabel="sentiment", stack=True,
     x_mapper_type='datetime', legend="top_left")
show(f)

我所坚持的是如何构建区域图。这些例子都隐含地使用0作为基线,我认为这导致了我的情况奇怪的重叠:

enter image description here

也许有办法强制输入的顺序来修复它?

0 个答案:

没有答案