Top "Ipython" questions

IPython is a feature-rich interactive shell for Python, and provides a kernel for frontends such as IPython Notebook and Jupyter Notebook.

Plot pandas dataframe containing NaNs

I have GPS data of ice speed from three different GPS receivers. The data are in a pandas dataframe with …

pandas ipython data-analysis
How to use dblquad for double integration?

The following example is provided on Scipy's reference page for integration. from scipy import integrate N = 5 def f(t, x): …

python numpy scipy ipython quad
Draw graph in NetworkX

I'm trying to draw any graph in NetworkX, but get nothing, not even errors: import networkx as nx import matplotlib.…

python matplotlib ipython ipython-notebook networkx
How to embed a Python interpreter in a PyQT widget

I want to be able to bring up an interactive python terminal from my python application. Some, but not all, …

python pyqt embed ipython
Open an ipython notebook via double-click on osx

I've downloaded a couple of ipython notebooks, and I'd like to open them in browser tabs without navigating to the …

macos osx-mountain-lion ipython ipython-notebook
How do I use vi keys in ipython under *nix?

Currently in Bash I use set -o vi to enable vi mode in my bash prompt. How do I get …

python bash vi ipython readline
IPython notebook: Convert an HTML notebook to ipynb

I have converted an IPython notebook to HTML format and subsequently lost the original ipynb file. Is there a simple …

python ipython jupyter-notebook jupyter nbconvert
Embedding IPython Qt console in a PyQt application

I'd like to embed an IPython qt console widget in a PyQt application I am working on. The code provided …

python qt pyqt4 ipython
Which of the many Spark/Scala kernels for Jupyter/IPython to choose?

There are a lot of Scala/Spark kernels for IPython/Jupyter: IScala ISpark Jupyter Scala Apache Toree(prev Spark Kernel) …

scala apache-spark ipython jupyter
Inconsistency between %time and %timeit in IPython

I am confronted to a weird situation that I can't explain. Here is my test timing the generation of a …

python ipython timeit