散景:甜甜圈图表,更改默认大小

时间:2017-05-04 06:12:54

标签: python visualization bokeh

如果我没错,甜甜圈图表是唯一一个已设置默认大小为400的图表。因此,如果我将我的图表的大小设置为小于400,那么甜甜圈会切断图表的顶部和底部。如何更改甜甜圈的大小

代码:

arr = [1,3,2,4]
data = pd.Series(arr, index=list('abcd'))
plot = Donut(data, plot_height=300)
show(plot)

Screenshot

1 个答案:

答案 0 :(得分:0)

bokeh.charts API(包括Donut}已于2017年完全弃用并删除。请使用稳定且受支持的bokeh.plotting API。在0.13.0版本中,您可以执行此操作:

from collections import Counter
from math import pi

import pandas as pd

from bokeh.palettes import Category20c
from bokeh.plotting import figure, show
from bokeh.transform import cumsum

# Data

x = Counter({
    'United States': 157, 'United Kingdom': 93, 'Japan': 89, 'China': 63,
    'Germany': 44, 'India': 42, 'Italy': 40,'Australia': 35,
    'Brazil': 32, 'France': 31, 'Taiwan': 31,'Spain': 29
})

data = pd.DataFrame.from_dict(dict(x), orient='index').reset_index().rename(index=str, columns={0:'value', 'index':'country'})
data['angle'] = data['value']/sum(x.values()) * 2*pi
data['color'] = Category20c[len(x)]

# Plotting code

p = figure(plot_height=350, title="Donut Chart", toolbar_location=None,
           tools="hover", tooltips=[("Country", "@country"),("Value", "@value")])

p.annular_wedge(x=0, y=1, inner_radius=0.2, outer_radius=0.4,
                start_angle=cumsum('angle', include_zero=True), end_angle=cumsum('angle'),
                line_color="white", fill_color='color', legend='country', source=data)

p.axis.axis_label=None
p.axis.visible=False
p.grid.grid_line_color = None

show(p)

enter image description here