In [1]:
import sys
sys.version
Out[1]:
In [2]:
%matplotlib inline
import matplotlib.pyplot as plt
import numpy as np
def plotnormal():
return plt.plot(np.random.randn(1000), np.random.randn(1000), 'o', alpha=0.3)
plotnormal()
Out[2]:
Errors are shown in informative ways:
In [9]:
%run non_existent_file
In [12]:
x = 1
y = 4
z = y/(1-x)
In [15]:
ip = get_ipython()
In [1]:
%install_ext https://raw.github.com/anaderi/ipython-hierarchymagic/master/hierarchymagic.py
In [3]:
%load_ext hierarchymagic
In [4]:
%hierarchy get_ipython()
Autocomplete doesn't play nicely with long arrays containing long strings.
In [ ]: