散景图不会显示标题

Bokeh plot wouldn't show title

尝试使用 Bokeh 绘制图表,但图表标题无法显示。

import pandas 
from bokeh.plotting import figure, output_file, show

df=pandas.read_excel("http://pythonhow.com/data/verlegenhuken.xlsx",sheet_name=0)

df["Temperature"]=df["Temperature"]/10
df["Pressure"]=df["Pressure"]/10
 
p=figure(plot_width=500,plot_height=400,tools='pan')

p.title.text="Temperature and Air Pressure"
p.title.text_color="Gray"
p.title.text_font="arial"
p.title.text_font_style="bold"
p.xaxis.minor_tick_line_color=None
p.yaxis.minor_tick_line_color=None
p.xaxis.axis_label="Temperature (°C)"
p.yaxis.axis_label="Pressure (hPa)"  

p.circle(df["Temperature"],df["Pressure"],size=0.5)
output_file("Weather.html")
show(p)

你必须在你的图中传递 title 参数。

例如:

p = figure(plot_width=500,plot_height=400,tools='pan', title='MyTitle')