Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 5 additions & 2 deletions scm/etc/scripts/gmtb_scm_analysis.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,12 +18,15 @@
Rv = 461.0
g = 9.81

plot_ext = '.png' #.pdf, .eps, .ps, .png (.png is fastest, but raster)
plot_ext = '.pdf' #.pdf, .eps, .ps, .png (.png is fastest, but raster)

reload(gspr)
reload(gsro)

pd.plotting.register_matplotlib_converters()
try:
pd.plotting.register_matplotlib_converters()
except (AttributeError):
print "Warning: The version of the pandas package you are using may lead to Future Warnings being generated. These can be ignored for now."

#subroutine for printing progress to the command line
def print_progress(n_complete, n_total):
Expand Down