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

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

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

In [4]:
f = l.figure('bokeh', size=(800, 500))
f.line(df[df.columns[:1]], y_axis='right')
# f.bar(df[df.columns[1:2]], y_axis='right')
f.area(df[df.columns[1:2]])
f.show()


Out[4]:
Figure(
id = '088f8352-5ca5-4f5a-9728-2647880ef8b5', …)

In [ ]:


In [ ]: