-
Notifications
You must be signed in to change notification settings - Fork 0
/
graphViz.py
executable file
·33 lines (26 loc) · 1.13 KB
/
graphViz.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
#!/usr/bin/python
from ppScrape import ppfNetwork, pppNetwork
from hmScrape import HypeMNetwork
from tmdScrape import TMDNetwork
from collatzGraph import CollatzGraph
from ghScrape import GithubNetwork
from wordGraph import WordChange
from countyGraph import CountyGraph
from lastFMScrape import ArtistNetwork, TagNetwork
ns = TagNetwork()
# ns.propegateGraph("Hip-hop", save_interval_and_location = [100, 'lfm_tags_all'], verbose = True)
# ns.saveGraph("meridian_all_flags")
# ns.propegateGraph('word', verbose = True)
#ns.propegateGraph('RLesser', save_interval_and_location = [100, 'github_1000'], limit = 1000, verbose = True)
# ns.propegateGraph('36119', verbose = True)
# 'hypeM_all' killed after 18114 by /danivachon/ -> /Radio/
# ns.propegateGraph(10003215, verbose = True)
# ns.saveGraph('adjwords_4')
# ns.loadGraph('github_1000')
# ns.colorNodes(keyProperty = "customName")
# ns.graphNetworkx(buds_visible = True, labels_visible = False, iterations = 100)
# time.sleep(5)
# ns.saveGraph('cerulean_all_flags')
ns.loadGraph('lfm_100')
# ns.colorNodes(keyProperty = "vowelPos")
ns.graphD3(buds_visible = False, filter_assym_edges = False)