The Wayback Machine - https://web.archive.org/web/20200821012747/https://github.com/topics/jupyter
Skip to content
#

jupyter

Here are 2,307 public repositories matching this topic...

bokeh
bryevdv
bryevdv commented Aug 18, 2020
from bokeh.io import show
from bokeh.layouts import column, row
from bokeh.models import ColorPicker
from bokeh.plotting import Figure

plot = Figure(x_range=(0, 1), y_range=(0, 1), plot_width=350, plot_height=350)
line = plot.line(x=(0,1), y=(0,1), color="red", line_width=4)

picker = ColorPicker(title="Line Color", color="red")
picker.js_link('color', line.glyph, 'line_color')

s

Improve this page

Add a description, image, and links to the jupyter topic page so that developers can more easily learn about it.

Curate this topic

Add this topic to your repo

To associate your repository with the jupyter topic, visit your repo's landing page and select "manage topics."

Learn more

You can’t perform that action at this time.