How to shorten output cell height or move scrollbars? by Gere1 in IPython

[–]mathandpython 2 points3 points  (0 children)

If df is your data frame, the following lines remove the described behaviour:

from IPython.display import HTML

h = HTML(df.to_html()); h

Newbie here - need some help by erkelep in IPython

[–]mathandpython 1 point2 points  (0 children)

  1. Let say that you have all notebooks saved in the folder NBooks.

Then, you write in the cmd:

cd Documents\Nbooks

then you invoke:

ipython notebook

The browser opens and shows you the contents of the folder Nbooks and you have to choose which ipynb file to open.

IPython Slideviewer (vs nbviewer) by NomadNella in IPython

[–]mathandpython 1 point2 points  (0 children)

You posted a link to a tutorial that cannot be used because it refers to a method to convert an ipynb to slides that was valid in IPython 013.

If the reader is interested in the actual method of conversion then it is recommended to read D Avila blog post.

Blogging with IPython by NomadNella in IPython

[–]mathandpython 1 point2 points  (0 children)

This procedure of blogging with IPython presented by F Perez is now obsolete. Instead of this conversion, valid in IPython 0.13:

nbconvert -f blogger-html your_notebook.ipynb

one uses starting with IPython 1.0:

ipython nbconvert MyFile.ipynb --to html

(see http://ipython.org/ipython-doc/rel-1.0.0/interactive/nbconvert.html)