0
Ich versuche, ein Bokeh Balkendiagramm Uding Python zu erstellen. Die Daten 2 sind die WerteBokeh Bar Grundstück |
from bokeh.plotting import figure, output_file, show,hplot
from bokeh.charts import Bar
data2=[65.75, 48.400000000000006, 58.183333333333337, 14.516666666666666]
bar = Bar(values=data2,xlabel="beef,pork,fowl,fish",ylabel="Avg consumtion", width=400)
show(bar)
Fehler
TypeError: Bar() takes at least 1 argument (1 given)
Was ich hier falsch mache?