Commit 3e94dc37 authored by Yusei Tahara's avatar Yusei Tahara

Disable matplotlib interactive mode to avoid "ValueError: ordinal must be >=...

Disable matplotlib interactive mode to avoid "ValueError: ordinal must be >= 1" error that sometimes happens when plotting datetime index.
parent 91747943
......@@ -165,7 +165,7 @@ def mergeTracebackListIntoResultDict(result_dict, error_result_dict_list):
def matplotlib_pre_run():
matplotlib.interactive(True)
matplotlib.interactive(False)
rc = {'figure.figsize': (6.0,4.0),
'figure.facecolor': (1,1,1,0),
'figure.edgecolor': (1,1,1,0),
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment