在散景图中的着色线

时间:2016-03-23 17:17:40

标签: python plot colors bokeh line-plot

我有一个包含线图的散景应用程序。这个图有10行。如何使用相同颜色的不同色调为线条着色?

有没有什么方法可以生成相同颜色的不同色调列表而无需硬编码?

1 个答案:

答案 0 :(得分:3)

您可以使用bokeh.palettes:

中的调色板
from bokeh.plotting import figure, output_file, show
from bokeh.palettes import Blues9

output_file('palette.html')

p = figure()
p.scatter(x=[0,1,2,3,4,5,6,7,8], y=[0,1,2,3,4,5,6,7,8], radius=1, fill_color=Blues9)

show(p)

Palette Example

http://bokeh.pydata.org/en/latest/docs/gallery/palettes.html