Lưu ý
Cần có ủy quyền mới truy nhập được vào trang này. Bạn có thể thử đăng nhập hoặc thay đổi thư mục.
Cần có ủy quyền mới truy nhập được vào trang này. Bạn có thể thử thay đổi thư mục.
Bokeh is a Python interactive visualization library.
To use Bokeh, install the Bokeh PyPI package through the Install libraries UI, and attach it to your cluster.
To display a Bokeh plot in Azure Databricks:
Generate a plot following the instructions in the Bokeh documentation.
Generate an HTML file containing the data for the plot, for example by using Bokeh's
file_html()oroutput_file()functions.Pass this HTML to the Azure Databricks
displayHTML()function.Important
The maximum size for a notebook cell, both contents and output, is 20MB. Make sure that the size of the HTML you pass to the
displayHTML()function does not exceed this value.
Notebook example: Bokeh
The following notebook shows a Bokeh example.