This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#Sample PLOS api code for use with python Solr library Sunburnt | |
#( https://github.com/tow/sunburnt ) | |
#!Note! requires sunburnt's external libraries: httplib2,lxml | |
#https://groups.google.com/d/topic/plos-api-developers/zv591sFz6TM/discussion | |
import sunburnt,urllib2 | |
class PlosInterface(sunburnt.SolrInterface): | |
def __init__(self,api_key): | |
plos_url = "http://api.plos.org/search" | |
#either |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import networkx as nx | |
from networkx.readwrite import d3_js | |
mikedewar = nx.read_graphml('mikedewar_rec.graphml') | |
# We need to relabel nodes as Twitter name if we want to show the names in the plot | |
label_dict = dict(map(lambda i : (mikedewar.nodes()[i], mikedewar.nodes(data=True)[i][1]['Label']), xrange(mikedewar.number_of_nodes()))) | |
mikedewar_d3 = nx.relabel_nodes(mikedewar, label_dict) | |
# Export |