Ganymede

Hacking Jupyter's atmosphere

Have you also wondered where the fourth Galilean moon in Jupyter's logo has gone? Well, it is told that Zeus ... Ganymede once more and sent out his eagle to catch him. Ganymede begged Jupyter to give him shelter in his atmosphere. Jupyter accepted under one condition. Ganymede shall ...

To see what Ganymede has done so far, open a notebook with a Python kernel (Ganymede promised to support other kernels in the future) and:


In [ ]:
%load_ext ganymede

In [8]:
%matplotlib inline

In [9]:
import matplotlib.pyplot as plt

In [10]:
from pandas import DataFrame

In [11]:
data = DataFrame([
  [1, 2, 3],
  [3, 7, 9],
  [5, 5, 1],
  ], columns=['x', 'y', 'z'])
data


Out[11]:
x y z
0 1 2 3
1 3 7 9
2 5 5 1

In [12]:
plt.plot(data.x, data.y)


Out[12]:
[<matplotlib.lines.Line2D at 0x6f81160>]

In [13]:
plt.plot(data.x, data.z)


Out[13]:
[<matplotlib.lines.Line2D at 0x76aa240>]