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('cufflinks')
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()
In [5]:
l.plot(df, 'scatter', 'cufflinks')
In [7]:
df = l.histogram()
l.plot(df, 'hist', 'cufflinks')
In [ ]: