1
我有一個數據幀作爲如何將標籤添加到散景條形圖?
df = pd.DataFrame(data = {'Country':'Spain','Japan','Brazil'],'Number':[10,20,30]})
我想繪製帶標籤的條形圖(即「編號」的值)註釋在頂部爲每個條,並相應地進行。
from bokeh.charts import Bar, output_file,output_notebook, show
from bokeh.models import Label
p = Bar(df,'Country', values='Number',title="Analysis", color = "navy")
label = Label(x='Country', y='Number', text='Number', level='glyph',x_offset=5, y_offset=-5)
p.add_annotation(label)
output_notebook()
show(p)
但是我得到了一個錯誤,如ValueError: expected a value of type Real, got COuntry of type str
。
我該如何解決這個問題?