In [1]:
%%capture
import lantern as l

In [2]:
df = l.bar()

In [3]:
col1 = df.columns[0]
col2 = df.columns[1]

In [4]:
l.plot(df[[col1, col2]], backend='bqplot', size=(12,5))



In [5]:
l.plot(df, backend='bqplot', size=(12,12))



In [8]:
import bqplot.pyplot as plt
plt.plot(df)
plt.show()



In [ ]: