在iPython中,我有一个googleAPI热图,它是从javascript中生成的,从Twitter流中查找地理数据:
html_template = '<div id="%s" style="width: 500px; height: 300px"></div>'
#This is to make sure the JS gets loaded before we try to load the maps
time.sleep(1)
key = 'geo_english'
jscript = gen_javascript(key, N=400)
display.HTML(html_template % key)
display.Javascript(jscript)
制作出漂亮的热图。我不确定如何将显示对象保存到文件中。 如何将此热图导出到png文件?