Skip to content
Snippets Groups Projects
Commit df83bf63 authored by Dominic Kempf's avatar Dominic Kempf
Browse files

Correctly choose matplotlib backend

parent dc688be2
No related branches found
No related tags found
No related merge requests found
#!/usr/bin/env python #!/usr/bin/env python
import pandas import pandas
import matplotlib.pyplot as plt import matplotlib
import sys import sys
matplotlib.use("PDF")
from matplotlib import pyplot as plt
title = sys.argv[1] title = sys.argv[1]
filename = title.lower().replace(" ", "_") + ".pdf" filename = title.lower().replace(" ", "_") + ".pdf"
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment