Hello World

要使用散景,你需要启动散景服务器并使用浏览器连接到它。我们将使用此示例脚本(hello_world.py):

from bokeh.models import ColumnDataSource
from bokeh.plotting import figure
from bokeh.io import curdoc

def modify_doc(doc):
    """Add a plotted function to the document.

    Arguments:
        doc: A bokeh document to which elements can be added.
    """
    x_values = range(10)
    y_values = [x ** 2 for x in x_values]
    data_source = ColumnDataSource(data=dict(x=x_values, y=y_values))
    plot = figure(title="f(x) = x^2",
                  tools="crosshair,pan,reset,save,wheel_zoom",)
    plot.line('x', 'y', source=data_source, line_width=3, line_alpha=0.6)
    doc.add_root(plot)
    doc.title = "Hello World"

def main():
    modify_doc(curdoc())
    
main()

要启动它,你需要在命令行上执行散景并使用 serve 命令启动服务器:

$ bokeh serve --show hello_world.py

--show 参数告诉 bokeh 打开浏览器窗口并显示 hello_world.py 中定义的文档。