Skip to content
Snippets Groups Projects
Commit 0d1f341c authored by Alán Muñoz's avatar Alán Muñoz
Browse files

clean(old): remove unused file

parent 897da295
No related branches found
No related tags found
No related merge requests found
#!/usr/bin/env python3
import numpy as np
from matplotlib import pyplot as plt
from matplotlib.backends.backend_pdf import PdfPages
def dummyplot():
plt.plot(np.random.randint(10, size=5), np.random.randint(10, size=5))
plt1 = dummyplot()
plt2 = dummyplot()
pp = PdfPages("foo.pdf")
for i in [plt1, plt2]:
pp.savefig(i)
pp.close()
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