s452094-plots/plot.py

5 lines
106 B
Python
Raw Normal View History

2020-04-03 18:44:35 +02:00
import matplotlib.pyplot as plt
plt.plot([1, 2, 3, 4])
plt.ylabel('some numbers')
2020-04-03 18:52:06 +02:00
plt.savefig('test.png')