Shell commands, magics and widgets
Questions
Are there any other features besides code, text and output?
Objectives
Learn how to access help.
Learn how to use magics and shell commands.
Learn how to use widgets.
Extra features
Access to help
We can get help on an object using a question mark:
import numpy as np
np.sum?
Or two question marks to also see the source code:
np.sum??
List all names in a module matching pattern:
?np.*sum*
Output:
np.cumsum
np.einsum
np.einsum_path
np.nancumsum
np.nansum
np.sum
%quickref
shows a quick reference card of features and shortcuts:
%quickref
Shell commands
You can run shell commands by prepending with “!”
On Windows, GitBash needs to have the following option enabled:
Use Git and the optional Unix tools from the Windows Command Prompt
Make sure your cell command doesn’t require interaction
!echo "hello"
Output:
hello
We can also capture the output of a shell command:
notebooks = !ls *.ipynb
Common linux shell commands are also available as magics: %ls, %pwd, %mkdir, %cp, %mv, %cd, etc..
Using shell commands can be useful when testing a new idea but for reproducible notebooks be careful with shell commands (will they also work on a different computer?).
Magics
Magics are a simple command language which significantly extend the power of Jupyter.
There are two kinds of magics:
Line magics: commands prepended by one % character and whose arguments only extend to the end of the current line.
Cell magics: use two percent characters as a marker (%%), receive as argument the whole cell (must be used as the first line in a cell)
%lsmagic
lists all available line and cell magics:
%lsmagic
Question mark shows help:
%sx?
Additional magics can also be installed or created.
Widgets
Widgets add more interactivity to Notebooks, allowing one to visualize and control changes in data, parameters etc.
from ipywidgets import interact
The
ipywidgets
package is included in the standard CodeRefinery conda environment, but if you run into problems getting widgets to work please refer to the official installation instructions.
Use interact
as a function
def f(x, y, s):
return (x, y, s)
interact(f, x=True, y=1.0, s="Hello");
Use interact
as a decorator
@interact(x=True, y=1.0, s="Hello")
def g(x, y, s):
return (x, y, s)
Does it not work? Extensions need to be installed.
The widgets interface have to be installed. JupyterLab is modular, and some parts need to be installed as an extension. In general, copy and paste the command into a shell (the JupyterLab shell works fine). See the installation instructions.
After installation, you need to reload the page to make it active (and if you installed it with pip or conda, restart the whole JupyterLab server)
A few useful magic commands
Using the computing-pi notebook, practice using a few magic commands. Remember that cell magics need to be on the first line of the cell.
In the cell with the for-loop over
num_points
(throwing darts), add the%%timeit
cell magic and run the cell.In the same cell, try instead the
%%prun
cell profiling magic.Try introducing a bug in the code (e.g., use an incorrect variable name:
points.append((x, y2, True))
)run the cell
after the exception occurs, run the
%debug
magic in a new cell to enter an interactive debuggertype
h
for a help menu, andhelp <keyword>
for help on keywordtype
p x
to print the value ofx
exit the debugger by typing
q
Have a look at the output of
%lsmagic
, and use a question mark and double question mark to see help for a magic command that raises your interest.
Keypoints
Jupyter notebooks have a number of extra features that can come in handy.