In [10]:
import graphistry
import pandas

links = pandas.read_csv('method_sims_graphistry_pt8.csv',encoding='utf-8')

api_key = open(".secret","r").readlines()[0].strip("\n")

graphistry.register(key=api_key)

plotter = graphistry.bind(source="source", destination="target")
plotter.plot(links)


WARNING: Could not contact labs.graphistry.com. Are you connected to the Internet?
Out[10]:

In [11]:
links = pandas.read_csv('method_sims_graphistry_pt9.csv',encoding='utf-8')

plotter = graphistry.bind(source="source", destination="target")
plotter.plot(links)


Out[11]:

In [1]:
import graphistry
import pandas

links = pandas.read_csv('equations_sims_graphistry_pt8.csv',encoding='utf-8')

api_key = open(".secret","r").readlines()[0].strip("\n")

graphistry.register(key=api_key)

plotter = graphistry.bind(source="source", destination="target")
plotter.plot(links)


Uploading 8089 kB. This may take a while...
WARNING: Could not contact labs.graphistry.com. Are you connected to the Internet?
Out[1]:

In [2]:
links = pandas.read_csv('equations_sims_graphistry_pt9.csv',encoding='utf-8')
plotter = graphistry.bind(source="source", destination="target")
plotter.plot(links)


Out[2]:

In [4]:
links = pandas.read_csv('equations_sims_graphistry_pt95.csv',encoding='utf-8')
plotter = graphistry.bind(source="source", destination="target")
plotter.plot(links)


Out[4]:

In [ ]: