-
Updated
Jul 8, 2020 - Jupyter Notebook
jupyter
Here are 2,307 public repositories matching this topic...
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
-
Updated
Jan 10, 2020 - HTML
-
Updated
Aug 20, 2020 - Python
/kind feature
Persona: Infrastructure Engineer
Control Plane Walkthrough:
- Install Kubeflow with (istio) KfDefs
- Install Kubeflow with dex - pending
- Configure / Get Istio IngressGateway endpoint
- Create profiles (w/ kubectl) #4725
- Create notebooks from user-namespace (w/ kubectl)
- Login (port-forward) into notebook as user
- Create TFJob (w/ kubec
-
Updated
Oct 31, 2019
-
Updated
May 15, 2020 - CSS
-
Updated
Aug 19, 2020 - Jupyter Notebook
-
Updated
Jun 10, 2020 - Python
could you add one of the spellchecker plugins?
-
Updated
Aug 20, 2020 - TypeScript
-
Updated
May 30, 2020
how to use gui in the AidLearning?how to custom the gui?
How to use Watcher / WatcherClient over tcp/ip network?
Watcher seems to ZMQ server, and WatcherClient is ZMQ Client, but there is no API/Interface to config server IP address.
Do I need to implement a class that inherits from WatcherClient?
-
Updated
Aug 20, 2020 - TypeScript
-
Updated
Jul 22, 2020 - Go
-
Updated
Aug 19, 2020 - TypeScript
-
Updated
Aug 10, 2020
-
Updated
Aug 21, 2020 - JavaScript
-
Updated
Mar 10, 2020 - Python
-
Updated
May 28, 2020 - Python
The example book created by jupyter-book create creates files with permissions 775. None of these files are really executable, and therefore the correct permissions should be 664 (or probably 644)
To Reproduce
jupyter-book create test; ls -al test
-
Updated
Aug 7, 2020 - Python
Improve this page
Add a description, image, and links to the jupyter topic page so that developers can more easily learn about it.
Add this topic to your repo
To associate your repository with the jupyter topic, visit your repo's landing page and select "manage topics."



To guide users towards doing things right, could we suggest they use the magics instead of the shell invocations? Possibly with a short explanation why. Was also mentioned in ipython/ipython#11524 (comment).