Commit 61cb135b authored by Yusei Tahara's avatar Yusei Tahara Committed by Eteri

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 39e9e7a7
......@@ -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