You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
from numpy import random
from lightning import Lightning
lgn = Lightning(local=True)
lgn.enable_local()
n = 100
x = random.randn(n)
y = random.randn(n)
viz = lgn.scatter(x, y)
viz.open()
But I get this error:
Traceback (most recent call last):
File "/Users/username/PycharmProjects/MLtest/mltest.py", line 32, in <module>
viz.open()
AttributeError: 'VisualizationLocal' object has no attribute 'open'
I'm trying to show plot locally and running the program on PyCharm. I have the lightning app installed and using python 2.7.10. Im warming up and hoping to use lightning vis with mye spark kmeans clustering code :) @freeman-lab
Thanks!
The text was updated successfully, but these errors were encountered:
I have this code:
But I get this error:
I'm trying to show plot locally and running the program on PyCharm. I have the lightning app installed and using python 2.7.10. Im warming up and hoping to use lightning vis with mye spark kmeans clustering code :)
@freeman-lab
Thanks!
The text was updated successfully, but these errors were encountered: