Exemplo n.º 1
0
def savefig(fn):
    from pylab import savefig as sf

    print "Saving", fn
    sf(fn)
Exemplo n.º 2
0
def savefig(fn, **kwargs):
    from pylab import savefig as sf
    sf(fn, **kwargs)
    print 'Wrote figure', fn
Exemplo n.º 3
0
def savefig(fn, **kwargs):
	from pylab import savefig as sf
	sf(fn, **kwargs)
	print 'Wrote figure', fn
Exemplo n.º 4
0
def showPlot(logFile):
    sf(logFile[:-3] + "png", bbox_inches="tight")
    plt.show()
Exemplo n.º 5
0
def savefig(fn):
	from pylab import savefig as sf
	print 'Saving', fn
	sf(fn)