This plugin lets you use Bokeh visualizations in Nitro apps.
pip install h2o-nitro-bokeh
- Import the plugin:
from h2o_nitro_bokeh import bokeh_plugin, bokeh_box
- Register the plugin:
nitro = View(main, title='My App', caption='v1.0', plugins=[bokeh_plugin()])
- Use the plugin:
# Make a plot
x = [1, 2, 3, 4, 5]
y = [6, 7, 2, 4, 5]
p = figure(title="Simple line example", x_axis_label="x", y_axis_label="y")
p.line(x, y, legend_label="Temp.", line_width=2)
# Display the plot
view(bokeh_box(p))
- v0.2.1 - Jun 09, 2022
- Fixed
- Don't return value from plots.
- Fixed
- v0.2.0 - May 39, 2022
- Perf
- Quicker loading
- Perf
- v0.1.0 - May 25, 2022
- Initial Version