##// END OF EJS Templates
Merge pull request #7871 from takluyver/docs-misc-cleanup-feb15...
Merge pull request #7871 from takluyver/docs-misc-cleanup-feb15 Misc docs cleanup

File last commit:

r17045:eaccf14f
r20523:0c6a0f79 merge
Show More
notebook.rst
482 lines | 19.6 KiB | text/x-rst | RstLexer
David P. Sanders
Initial refactoring of htmlnotebook.txt into 3 parts....
r11792 .. _htmlnotebook:
The IPython Notebook
====================
Paul Ivanov
major doc update for 1.0 release...
r12098 Introduction
------------
David P. Sanders
Initial refactoring of htmlnotebook.txt into 3 parts....
r11792
Paul Ivanov
major doc update for 1.0 release...
r12098 The notebook extends the console-based approach to interactive computing in
a qualitatively new direction, providing a web-based application suitable for
capturing the whole computation process: developing, documenting, and
executing code, as well as communicating the results. The IPython notebook
combines two components:
David P. Sanders
Initial refactoring of htmlnotebook.txt into 3 parts....
r11792
Paul Ivanov
major doc update for 1.0 release...
r12098 **A web application**: a browser-based tool for interactive authoring of
documents which combine explanatory text, mathematics, computations and their
rich media output.
David P. Sanders
Initial refactoring of htmlnotebook.txt into 3 parts....
r11792
Paul Ivanov
major doc update for 1.0 release...
r12098 **Notebook documents**: a representation of all content visible in the web
application, including inputs and outputs of the computations, explanatory
text, mathematics, images, and rich media representations of objects.
David P. Sanders
Initial refactoring of htmlnotebook.txt into 3 parts....
r11792
Paul Ivanov
major doc update for 1.0 release...
r12098 .. seealso::
David P. Sanders
Initial refactoring of htmlnotebook.txt into 3 parts....
r11792
Paul Ivanov
major doc update for 1.0 release...
r12098 See the :ref:`installation documentation <installnotebook>` for directions
on how to install the notebook and its dependencies.
David P. Sanders
Initial refactoring of htmlnotebook.txt into 3 parts....
r11792
Paul Ivanov
major doc update for 1.0 release...
r12098 Main features of the web application
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
David P. Sanders
Initial refactoring of htmlnotebook.txt into 3 parts....
r11792
Paul Ivanov
major doc update for 1.0 release...
r12098 * In-browser editing for code, with automatic syntax highlighting,
indentation, and tab completion/introspection.
David P. Sanders
Initial refactoring of htmlnotebook.txt into 3 parts....
r11792
Paul Ivanov
major doc update for 1.0 release...
r12098 * The ability to execute code from the browser, with the results of
computations attached to the code which generated them.
David P. Sanders
Initial refactoring of htmlnotebook.txt into 3 parts....
r11792
Paul Ivanov
major doc update for 1.0 release...
r12098 * Displaying the result of computation using rich media representations, such
as HTML, LaTeX, PNG, SVG, etc. For example, publication-quality figures
rendered by the matplotlib_ library, can be included inline.
David P. Sanders
Initial refactoring of htmlnotebook.txt into 3 parts....
r11792
Paul Ivanov
major doc update for 1.0 release...
r12098 * In-browser editing for rich text using the Markdown_ markup language, which
can provide commentary for the code, is not limited to plain text.
David P. Sanders
Initial refactoring of htmlnotebook.txt into 3 parts....
r11792
Paul Ivanov
major doc update for 1.0 release...
r12098 * The ability to easily include mathematical notation within markdown cells
using LaTeX, and rendered natively by MathJax_.
David P. Sanders
Initial refactoring of htmlnotebook.txt into 3 parts....
r11792
Paul Ivanov
major doc update for 1.0 release...
r12098 .. _MathJax: http://www.mathjax.org/
David P. Sanders
Initial refactoring of htmlnotebook.txt into 3 parts....
r11792
Paul Ivanov
major doc update for 1.0 release...
r12098 Notebook documents
~~~~~~~~~~~~~~~~~~
Notebook documents contains the inputs and outputs of a interactive session as
well as additional text that accompanies the code but is not meant for
execution. In this way, notebook files can serve as a complete computational
record of a session, interleaving executable code with explanatory text,
mathematics, and rich representations of resulting objects. These documents
are internally JSON_ files and are saved with the ``.ipynb`` extension. Since
JSON is a plain text format, they can be version-controlled and shared with
colleagues.
.. _JSON: http://en.wikipedia.org/wiki/JSON
David P. Sanders
Initial refactoring of htmlnotebook.txt into 3 parts....
r11792
Paul Ivanov
major doc update for 1.0 release...
r12098 Notebooks may be exported to a range of static formats, including HTML (for
John Zwinck
Fix typo in docs
r17045 example, for blog posts), reStructuredText, LaTeX, PDF, and slide shows, via
Paul Ivanov
major doc update for 1.0 release...
r12098 the new :ref:`nbconvert <nbconvert>` command.
David P. Sanders
Initial refactoring of htmlnotebook.txt into 3 parts....
r11792
Paul Ivanov
major doc update for 1.0 release...
r12098 Furthermore, any ``.ipynb`` notebook document available from a public
URL can be shared via the `IPython Notebook Viewer <nbviewer>`_ (nbviewer_).
This service loads the notebook document from the URL and renders it as a
static web page. The results may thus be shared with a colleague, or as a
public blog post, without other users needing to install IPython themselves.
In effect, nbviewer_ is simply :ref:`nbconvert <nbconvert>` as a web service,
so you can do your own static conversions with nbconvert, without relying on
nbviewer.
David P. Sanders
Initial refactoring of htmlnotebook.txt into 3 parts....
r11792
Paul Ivanov
major doc update for 1.0 release...
r12098 .. seealso::
David P. Sanders
Initial refactoring of htmlnotebook.txt into 3 parts....
r11792
Paul Ivanov
major doc update for 1.0 release...
r12098 :ref:`Details on the notebook JSON file format <notebook_format>`
David P. Sanders
Initial refactoring of htmlnotebook.txt into 3 parts....
r11792
Paul Ivanov
major doc update for 1.0 release...
r12098 Starting the notebook server
----------------------------
David P. Sanders
Initial refactoring of htmlnotebook.txt into 3 parts....
r11792
Paul Ivanov
major doc update for 1.0 release...
r12098 You can start running a notebook server from the command line using the
following command::
David P. Sanders
Initial refactoring of htmlnotebook.txt into 3 parts....
r11792
Paul Ivanov
major doc update for 1.0 release...
r12098 ipython notebook
David P. Sanders
Initial refactoring of htmlnotebook.txt into 3 parts....
r11792
Paul Ivanov
major doc update for 1.0 release...
r12098 This will print some information about the notebook server in your console,
and open a web browser to the URL of the web application (by default,
``http://127.0.0.1:8888``).
David P. Sanders
Initial refactoring of htmlnotebook.txt into 3 parts....
r11792
Paul Ivanov
major doc update for 1.0 release...
r12098 The landing page of the IPython notebook web application, the **dashboard**,
shows the notebooks currently available in the notebook directory (by default,
the directory from which the notebook server was started).
David P. Sanders
Initial refactoring of htmlnotebook.txt into 3 parts....
r11792
Paul Ivanov
major doc update for 1.0 release...
r12098 You can create new notebooks from the dashboard with the ``New Notebook``
button, or open existing ones by clicking on their name. You can also drag
and drop ``.ipynb`` notebooks and standard ``.py`` Python source code files
into the notebook list area.
David P. Sanders
Initial refactoring of htmlnotebook.txt into 3 parts....
r11792
Paul Ivanov
major doc update for 1.0 release...
r12098 When starting a notebook server from the command line, you can also open a
particular notebook directly, bypassing the dashboard, with ``ipython notebook
my_notebook.ipynb``. The ``.ipynb`` extension is assumed if no extension is
given.
When you are inside an open notebook, the `File | Open...` menu option will
open the dashboard in a new browser tab, to allow you to open another notebook
from the notebook directory or to create a new notebook.
David P. Sanders
notebook docs touchup...
r12097
David P. Sanders
Initial refactoring of htmlnotebook.txt into 3 parts....
r11792
.. note::
You can start more than one notebook server at the same time, if you want
to work on notebooks in different directories. By default the first
notebook server starts on port 8888, and later notebook servers search for
ports near that one. You can also manually specify the port with the
``--port`` option.
Paul Ivanov
major doc update for 1.0 release...
r12098 Creating a new notebook document
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
David P. Sanders
Initial refactoring of htmlnotebook.txt into 3 parts....
r11792
Paul Ivanov
major doc update for 1.0 release...
r12098 A new notebook may be created at any time, either from the dashboard, or using
the `File | New` menu option from within an active notebook. The new notebook
is created within the same directory and will open in a new browser tab. It
will also be reflected as a new entry in the notebook list on the dashboard.
David P. Sanders
Initial refactoring of htmlnotebook.txt into 3 parts....
r11792
Paul Ivanov
major doc update for 1.0 release...
r12098 Opening notebooks
~~~~~~~~~~~~~~~~~
An open notebook has **exactly one** interactive session connected to an
:ref:`IPython kernel <ipythonzmq>`, which will execute code sent by the user
and communicate back results. This kernel remains active if the web browser
window is closed, and reopening the same notebook from the dashboard will
reconnect the web application to the same kernel. In the dashboard, notebooks
with an active kernel have a ``Shutdown`` button next to them, whereas
notebooks without an active kernel have a ``Delete`` button in its place.
David P. Sanders
Initial refactoring of htmlnotebook.txt into 3 parts....
r11792
Paul Ivanov
major doc update for 1.0 release...
r12098 Other clients may connect to the same underlying IPython kernel.
The notebook server always prints to the terminal the full details of
how to connect to each kernel, with messages such as the following::
David P. Sanders
Initial refactoring of htmlnotebook.txt into 3 parts....
r11792
Paul Ivanov
major doc update for 1.0 release...
r12098 [NotebookApp] Kernel started: 87f7d2c0-13e3-43df-8bb8-1bd37aaf3373
David P. Sanders
Initial refactoring of htmlnotebook.txt into 3 parts....
r11792
Paul Ivanov
major doc update for 1.0 release...
r12098 This long string is the kernel's ID which is sufficient for getting the
information necessary to connect to the kernel. You can also request this
connection data by running the ``%connect_info`` :ref:`magic
<magics_explained>`. This will print the same ID information as well as the
content of the JSON data structure it contains.
David P. Sanders
Initial refactoring of htmlnotebook.txt into 3 parts....
r11792
Paul Ivanov
major doc update for 1.0 release...
r12098 You can then, for example, manually start a Qt console connected to the *same*
kernel from the command line, by passing a portion of the ID::
David P. Sanders
Initial refactoring of htmlnotebook.txt into 3 parts....
r11792
Paul Ivanov
major doc update for 1.0 release...
r12098 $ ipython qtconsole --existing 87f7d2c0
David P. Sanders
Initial refactoring of htmlnotebook.txt into 3 parts....
r11792
Paul Ivanov
major doc update for 1.0 release...
r12098 Without an ID, ``--existing`` will connect to the most recently
started kernel. This can also be done by running the ``%qtconsole``
:ref:`magic <magics_explained>` in the notebook.
David P. Sanders
Initial refactoring of htmlnotebook.txt into 3 parts....
r11792
Paul Ivanov
major doc update for 1.0 release...
r12098 .. seealso::
David P. Sanders
Initial refactoring of htmlnotebook.txt into 3 parts....
r11792
Paul Ivanov
major doc update for 1.0 release...
r12098 :ref:`ipythonzmq`
David P. Sanders
Initial refactoring of htmlnotebook.txt into 3 parts....
r11792
Notebook user interface
Paul Ivanov
major doc update for 1.0 release...
r12098 -----------------------
David P. Sanders
Initial refactoring of htmlnotebook.txt into 3 parts....
r11792
Paul Ivanov
major doc update for 1.0 release...
r12098 When you create a new notebook document, you will be presented with the
**notebook name**, a **menu bar**, a **toolbar** and an empty **code
cell**.
David P. Sanders
Initial refactoring of htmlnotebook.txt into 3 parts....
r11792
Paul Ivanov
major doc update for 1.0 release...
r12098 **notebook name**: The name of the notebook document is displayed at the top
of the page, next to the ``IP[y]: Notebook`` logo. This name reflects the name
of the ``.ipynb`` notebook document file. Clicking on the notebook name
brings up a dialog which allows you to rename it. Thus, renaming a notebook
from "Untitled0" to "My first notebook" in the browser, renames the
``Untitled0.ipynb`` file to ``My first notebook.ipynb``.
David P. Sanders
Initial refactoring of htmlnotebook.txt into 3 parts....
r11792
Paul Ivanov
major doc update for 1.0 release...
r12098 **menu bar**: The menu bar presents different options that may be used to
manipulate the way the notebook functions.
David P. Sanders
Initial refactoring of htmlnotebook.txt into 3 parts....
r11792
Paul Ivanov
major doc update for 1.0 release...
r12098 **toolbar**: The tool bar gives a quick way of performing the most-used
operations within the notebook, by clicking on an icon.
David P. Sanders
Initial refactoring of htmlnotebook.txt into 3 parts....
r11792
Paul Ivanov
major doc update for 1.0 release...
r12098 **code cell**: the default type of cell, read on for an explanation of cells
David P. Sanders
Initial refactoring of htmlnotebook.txt into 3 parts....
r11792
Structure of a notebook document
--------------------------------
Paul Ivanov
major doc update for 1.0 release...
r12098 The notebook consists of a sequence of cells. A cell is a multi-line
text input field, and its contents can be executed by using
:kbd:`Shift-Enter`, or by clicking either the "Play" button the toolbar, or
`Cell | Run` in the menu bar. The execution behavior of a cell is determined
the cell's type. There are four types of cells: **code cells**, **markdown
cells**, **raw cells** and **heading cells**. Every cell starts off
being a **code cell**, but its type can be changed by using a dropdown on the
toolbar (which will be "Code", initially), or via :ref:`keyboard shortcuts
<keyboard-shortcuts>`.
David P. Sanders
Initial refactoring of htmlnotebook.txt into 3 parts....
r11792
Dražen Lučanin
Reference notebook examples, fixes #4146.
r12362 For more information on the different things you can do in a notebook,
see the `collection of examples
Mohan Raj Rajamanickam
Update notebook.rst...
r16399 <http://nbviewer.ipython.org/github/ipython/ipython/blob/master/examples/Notebook/Index.ipynb>`_.
David P. Sanders
Initial refactoring of htmlnotebook.txt into 3 parts....
r11792
Code cells
Paul Ivanov
major doc update for 1.0 release...
r12098 ~~~~~~~~~~
A *code cell* allows you to edit and write new code, with full syntax
highlighting and tab completion. By default, the language associated to a code
cell is Python, but other languages, such as ``Julia`` and ``R``, can be
handled using :ref:`cell magic commands <magics_explained>`.
When a code cell is executed, code that it contains is sent to the kernel
associated with the notebook. The results that are returned from this
computation are then displayed in the notebook as the cell's *output*. The
output is not limited to text, with many other possible forms of output are
also possible, including ``matplotlib`` figures and HTML tables (as used, for
example, in the ``pandas`` data analysis package). This is known as IPython's
David P. Sanders
Initial refactoring of htmlnotebook.txt into 3 parts....
r11792 *rich display* capability.
Paul Ivanov
major doc update for 1.0 release...
r12098 .. seealso::
`Basic Output`_ example notebook
`Rich Display System`_ example notebook
David P. Sanders
Initial refactoring of htmlnotebook.txt into 3 parts....
r11792
Markdown cells
Paul Ivanov
major doc update for 1.0 release...
r12098 ~~~~~~~~~~~~~~
David P. Sanders
Initial refactoring of htmlnotebook.txt into 3 parts....
r11792 You can document the computational process in a literate way, alternating
descriptive text with code, using *rich text*. In IPython this is accomplished
by marking up text with the Markdown language. The corresponding cells are
Paul Ivanov
major doc update for 1.0 release...
r12098 called *Markdown cells*. The Markdown language provides a simple way to
David P. Sanders
Initial refactoring of htmlnotebook.txt into 3 parts....
r11792 perform this text markup, that is, to specify which parts of the text should
be emphasized (italics), bold, form lists, etc.
Paul Ivanov
major doc update for 1.0 release...
r12098 When a Markdown cell is executed, the Markdown code is converted into
the corresponding formatted rich text. Markdown allows arbitrary HTML code for
formatting.
David P. Sanders
Initial refactoring of htmlnotebook.txt into 3 parts....
r11792
Within Markdown cells, you can also include *mathematics* in a straightforward
way, using standard LaTeX notation: ``$...$`` for inline mathematics and
``$$...$$`` for displayed mathematics. When the Markdown cell is executed,
the LaTeX portions are automatically rendered in the HTML output as equations
with high quality typography. This is made possible by MathJax_, which
MinRK
fix a few markup issues and inaccuracies
r11794 supports a `large subset <mathjax_tex>`_ of LaTeX functionality
David P. Sanders
Initial refactoring of htmlnotebook.txt into 3 parts....
r11792
MinRK
fix a few markup issues and inaccuracies
r11794 .. _mathjax_tex: http://docs.mathjax.org/en/latest/tex.html
David P. Sanders
Initial refactoring of htmlnotebook.txt into 3 parts....
r11792
Standard mathematics environments defined by LaTeX and AMS-LaTeX (the
`amsmath` package) also work, such as
``\begin{equation}...\end{equation}``, and ``\begin{align}...\end{align}``.
New LaTeX macros may be defined using standard methods,
such as ``\newcommand``, by placing them anywhere *between math delimiters* in
a Markdown cell. These definitions are then available throughout the rest of
Paul Ivanov
major doc update for 1.0 release...
r12098 the IPython session.
.. seealso::
David P. Sanders
Initial refactoring of htmlnotebook.txt into 3 parts....
r11792
Paul Ivanov
major doc update for 1.0 release...
r12098 `Markdown Cells`_ example notebook
MinRK
fix a few markup issues and inaccuracies
r11794
Paul Ivanov
major doc update for 1.0 release...
r12098 Raw cells
~~~~~~~~~
*Raw* cells provide a place in which you can write *output* directly.
Raw cells are not evaluated by the notebook.
When passed through :ref:`nbconvert <nbconvert>`, raw cells arrive in the
destination format unmodified. For example, this allows you to type full LaTeX
into a raw cell, which will only be rendered by LaTeX after conversion by
nbconvert.
David P. Sanders
Initial refactoring of htmlnotebook.txt into 3 parts....
r11792
Heading cells
~~~~~~~~~~~~~
MinRK
fix a few markup issues and inaccuracies
r11794
David P. Sanders
Initial refactoring of htmlnotebook.txt into 3 parts....
r11792 You can provide a conceptual structure for your computational document as a
whole using different levels of headings; there are 6 levels available, from
level 1 (top level) down to level 6 (paragraph). These can be used later for
Paul Ivanov
major doc update for 1.0 release...
r12098 constructing tables of contents, etc. As with Markdown cells, a heading
cell is replaced by a rich text rendering of the heading when the cell is
executed.
David P. Sanders
Initial refactoring of htmlnotebook.txt into 3 parts....
r11792
Basic workflow
--------------
MinRK
fix a few markup issues and inaccuracies
r11794
David P. Sanders
Initial refactoring of htmlnotebook.txt into 3 parts....
r11792 The normal workflow in a notebook is, then, quite similar to a standard
IPython session, with the difference that you can edit cells in-place multiple
times until you obtain the desired results, rather than having to
Paul Ivanov
major doc update for 1.0 release...
r12098 rerun separate scripts with the ``%run`` magic command.
David P. Sanders
Initial refactoring of htmlnotebook.txt into 3 parts....
r11792
Typically, you will work on a computational problem in pieces, organizing
related ideas into cells and moving forward once previous parts work
correctly. This is much more convenient for interactive exploration than
breaking up a computation into scripts that must be executed together, as was
Paul Ivanov
major doc update for 1.0 release...
r12098 previously necessary, especially if parts of them take a long time to run.
David P. Sanders
Initial refactoring of htmlnotebook.txt into 3 parts....
r11792
At certain moments, it may be necessary to interrupt a calculation which is
Paul Ivanov
major doc update for 1.0 release...
r12098 taking too long to complete. This may be done with the `Kernel | Interrupt`
menu option, or the :kbd:`Ctrl-m i` keyboard shortcut.
David P. Sanders
Initial refactoring of htmlnotebook.txt into 3 parts....
r11792 Similarly, it may be necessary or desirable to restart the whole computational
Paul Ivanov
major doc update for 1.0 release...
r12098 process, with the `Kernel | Restart` menu option or :kbd:`Ctrl-m .`
shortcut.
David P. Sanders
Initial refactoring of htmlnotebook.txt into 3 parts....
r11792
Paul Ivanov
major doc update for 1.0 release...
r12098 A notebook may be downloaded in either a ``.ipynb`` or ``.py`` file from the
menu option `File | Download as`. Choosing the ``.py`` option downloads a
Python ``.py`` script, in which all rich output has been removed and the
content of markdown cells have been inserted as comments.
David P. Sanders
notebook docs touchup...
r12097
Paul Ivanov
major doc update for 1.0 release...
r12098 .. seealso::
David P. Sanders
Initial refactoring of htmlnotebook.txt into 3 parts....
r11792
Paul Ivanov
major doc update for 1.0 release...
r12098 `Running Code in the IPython Notebook`_ example notebook
`Basic Output`_ example notebook
David P. Sanders
Initial refactoring of htmlnotebook.txt into 3 parts....
r11792
Paul Ivanov
major doc update for 1.0 release...
r12098 :ref:`a warning about doing "roundtrip" conversions <note_about_roundtrip>`.
.. _keyboard-shortcuts:
David P. Sanders
Initial refactoring of htmlnotebook.txt into 3 parts....
r11792
Keyboard shortcuts
~~~~~~~~~~~~~~~~~~
Paul Ivanov
add keyboard shortcut to docs, closes #2960
r11897 All actions in the notebook can be performed with the mouse, but keyboard
shortcuts are also available for the most common ones. The essential shortcuts
David P. Sanders
Initial refactoring of htmlnotebook.txt into 3 parts....
r11792 to remember are the following:
Paul Ivanov
add keyboard shortcut to docs, closes #2960
r11897 * :kbd:`Shift-Enter`: run cell
David P. Sanders
Initial refactoring of htmlnotebook.txt into 3 parts....
r11792 Execute the current cell, show output (if any), and jump to the next cell
Paul Ivanov
major doc update for 1.0 release...
r12098 below. If :kbd:`Shift-Enter` is invoked on the last cell, a new code
David P. Sanders
Initial refactoring of htmlnotebook.txt into 3 parts....
r11792 cell will also be created. Note that in the notebook, typing :kbd:`Enter`
on its own *never* forces execution, but rather just inserts a new line in
Paul Ivanov
major doc update for 1.0 release...
r12098 the current cell. :kbd:`Shift-Enter` is equivalent to clicking the
Paul Ivanov
add keyboard shortcut to docs, closes #2960
r11897 ``Cell | Run`` menu item.
David P. Sanders
Initial refactoring of htmlnotebook.txt into 3 parts....
r11792
Paul Ivanov
add keyboard shortcut to docs, closes #2960
r11897 * :kbd:`Ctrl-Enter`: run cell in-place
David P. Sanders
Initial refactoring of htmlnotebook.txt into 3 parts....
r11792 Execute the current cell as if it were in "terminal mode", where any
Paul Ivanov
add keyboard shortcut to docs, closes #2960
r11897 output is shown, but the cursor *remains* in the current cell. The cell's
entire contents are selected after execution, so you can just start typing
and only the new input will be in the cell. This is convenient for doing
quick experiments in place, or for querying things like filesystem
content, without needing to create additional cells that you may not want
to be saved in the notebook.
* :kbd:`Alt-Enter`: run cell, insert below
Paul Ivanov
major doc update for 1.0 release...
r12098 Executes the current cell, shows the output, and inserts a *new*
Paul Ivanov
add keyboard shortcut to docs, closes #2960
r11897 cell between the current cell and the cell below (if one exists). This
David P. Sanders
Initial refactoring of htmlnotebook.txt into 3 parts....
r11792 is thus a shortcut for the sequence :kbd:`Shift-Enter`, :kbd:`Ctrl-m a`.
(:kbd:`Ctrl-m a` adds a new cell above the current one.)
Thomas Kluyver
Remove the outdated keyboard shortcuts from notebook docs...
r16248 * :kbd:`Esc` and :kbd:`Enter`: Command mode and edit mode
In command mode, you can easily navigate around the notebook using keyboard
shortcuts. In edit mode, you can edit text in cells.
David P. Sanders
Initial refactoring of htmlnotebook.txt into 3 parts....
r11792
Thomas Kluyver
Remove the outdated keyboard shortcuts from notebook docs...
r16248 For the full list of available shortcuts, click :guilabel:`Help`,
:guilabel:`Keyboard Shortcuts` in the notebook menus.
David P. Sanders
Initial refactoring of htmlnotebook.txt into 3 parts....
r11792
Plotting
--------
Paul Ivanov
major doc update for 1.0 release...
r12098 One major feature of the notebook is the ability to display plots that are the
output of running code cells. IPython is designed to work seamlessly with the
matplotlib_ plotting library to provide this functionality.
David P. Sanders
Initial refactoring of htmlnotebook.txt into 3 parts....
r11792
To set this up, before any plotting is performed you must execute the
Paul Ivanov
major doc update for 1.0 release...
r12098 ``%matplotlib`` :ref:`magic command <magics_explained>`. This performs the
necessary behind-the-scenes setup for IPython to work correctly hand in hand
with ``matplotlib``; it does *not*, however, actually execute any Python
``import`` commands, that is, no names are added to the namespace.
David P. Sanders
Initial refactoring of htmlnotebook.txt into 3 parts....
r11792
MinRK
remove pylab from notebook doc
r11823 If the ``%matplotlib`` magic is called without an argument, the
David P. Sanders
Initial refactoring of htmlnotebook.txt into 3 parts....
r11792 output of a plotting command is displayed using the default ``matplotlib``
backend in a separate window. Alternatively, the backend can be explicitly
requested using, for example::
%matplotlib gtk
Paul Ivanov
major doc update for 1.0 release...
r12098 A particularly interesting backend, provided by IPython, is the ``inline``
backend. This is available only for the IPython Notebook and the
:ref:`IPython QtConsole <qtconsole>`. It can be invoked as follows::
David P. Sanders
Initial refactoring of htmlnotebook.txt into 3 parts....
r11792
%matplotlib inline
Paul Ivanov
major doc update for 1.0 release...
r12098 With this backend, the output of plotting commands is displayed *inline*
within the notebook, directly below the code cell that produced it. The
resulting plots will then also be stored in the notebook document.
David P. Sanders
Initial refactoring of htmlnotebook.txt into 3 parts....
r11792
Paul Ivanov
major doc update for 1.0 release...
r12098 .. seealso::
David P. Sanders
Initial refactoring of htmlnotebook.txt into 3 parts....
r11792
Paul Ivanov
major doc update for 1.0 release...
r12098 `Plotting with Matplotlib`_ example notebook
David P. Sanders
Initial refactoring of htmlnotebook.txt into 3 parts....
r11792
Configuring the IPython Notebook
--------------------------------
Paul Ivanov
major doc update for 1.0 release...
r12098 The notebook server can be run with a variety of command line arguments.
David P. Sanders
Initial refactoring of htmlnotebook.txt into 3 parts....
r11792 To see a list of available options enter::
$ ipython notebook --help
Defaults for these options can also be set by creating a file named
``ipython_notebook_config.py`` in your IPython *profile folder*. The profile
folder is a subfolder of your IPython directory; to find out where it is
located, run::
$ ipython locate
To create a new set of default configuration files, with lots of information
on available options, use::
$ ipython profile create
David P. Sanders
notebook docs touchup...
r12097 .. seealso::
David P. Sanders
Initial refactoring of htmlnotebook.txt into 3 parts....
r11792
:ref:`config_overview`, in particular :ref:`Profiles`.
Paul Ivanov
major doc update for 1.0 release...
r12098
Thomas Kluyver
Disambiguate conflicting label
r16159 :ref:`notebook_server_security`
Paul Ivanov
major doc update for 1.0 release...
r12098
:ref:`notebook_public_server`
David P. Sanders
Initial refactoring of htmlnotebook.txt into 3 parts....
r11792
MinRK
add notebook signing docs
r14910 .. _signing_notebooks:
Signing Notebooks
-----------------
To prevent untrusted code from executing on users' behalf when notebooks open,
we have added a signature to the notebook, stored in metadata.
The notebook server verifies this signature when a notebook is opened.
If the signature stored in the notebook metadata does not match,
javascript and HTML output will not be displayed on load,
and must be regenerated by re-executing the cells.
Any notebook that you have executed yourself *in its entirety* will be considered trusted,
and its HTML and javascript output will be displayed on load.
If you need to see HTML or Javascript output without re-executing,
you can explicitly trust notebooks, such as those shared with you,
or those that you have written yourself prior to IPython 2.0,
at the command-line with::
$ ipython trust mynotebook.ipynb [other notebooks.ipynb]
This just generates a new signature stored in each notebook.
You can generate a new notebook signing key with::
$ ipython trust --reset
David P. Sanders
notebook docs touchup...
r12097 Importing ``.py`` files
-----------------------
David P. Sanders
Initial refactoring of htmlnotebook.txt into 3 parts....
r11792
Paul Ivanov
major doc update for 1.0 release...
r12098 ``.py`` files will be imported as a notebook with
MinRK
fix a few markup issues and inaccuracies
r11794 the same basename, but an ``.ipynb`` extension, located in the notebook
David P. Sanders
Initial refactoring of htmlnotebook.txt into 3 parts....
r11792 directory. The notebook created will have just one cell, which will contain
all the code in the ``.py`` file. You can later manually partition this into
individual cells using the ``Edit | Split Cell`` menu option, or the
:kbd:`Ctrl-m -` keyboard shortcut.
Thomas Kluyver
Miscellaneous doc fixes
r13465 Note that ``.py`` scripts obtained from a notebook document using :doc:`nbconvert <nbconvert>`
David P. Sanders
notebook docs touchup...
r12097 maintain the structure of the notebook in comments. Reimporting such a
Paul Ivanov
major doc update for 1.0 release...
r12098 script back into a notebook will preserve this structure.
David P. Sanders
Initial refactoring of htmlnotebook.txt into 3 parts....
r11792
Paul Ivanov
major doc update for 1.0 release...
r12098 .. _note_about_roundtrip:
David P. Sanders
notebook docs touchup...
r12097
.. warning::
Paul Ivanov
major doc update for 1.0 release...
r12098 While in simple cases you can "roundtrip" a notebook to Python, edit the
Python file, and then import it back without loss of main content, this is
in general *not guaranteed to work*. First, there is extra metadata
saved in the notebook that may not be saved to the ``.py`` format. And as
the notebook format evolves in complexity, there will be attributes of the
notebook that will not survive a roundtrip through the Python form. You
David P. Sanders
notebook docs touchup...
r12097 should think of the Python format as a way to output a script version of a
notebook and the import capabilities as a way to load existing code to get
a notebook started. But the Python version is *not* an alternate notebook
format.
.. seealso::
:ref:`notebook_format`
Paul Ivanov
major doc update for 1.0 release...
r12098
.. include:: ../links.txt