In [3]:
from lightning import Lightning
import numpy
import seaborn
import sklearn
import colorsys
lgn = Lightning(ipython=True, host ='http://public.lightning-viz.org')


:0: FutureWarning: IPython widgets are experimental and may change in the future.
Lightning initialized
Connected to server at http://public.lightning-viz.org

In [9]:
lgn.line([1,2,3,4,5,6,7,8,0,-2,2])
lgn.scatter([1,2,3],[2,9,4])
# lgn.scatter([1,2,3],[2,9,4], label=[1,2,3], size=[5,10,20])


Out[9]:

In [5]:



---------------------------------------------------------------------------
TypeError                                 Traceback (most recent call last)
<ipython-input-5-076f10b08f9c> in <module>()
----> 1 lgn.scatter([1,2,3],[2,9,4], label=[1,2,3], size=[5,10,20])

TypeError: <lambda>() got an unexpected keyword argument 'label'

In [ ]: