123456789101112131415161718192021 |
- from matplotlib import pyplot as plt
- t = [0, 25, 35]
- Z = [0, 10205, 14287]
- plt.plot(t, Z, color='#000000', linewidth=2, marker='o')
- plt.xlabel('t')
- plt.ylabel('Z')
- plt.title('Рівень збитків підприємства, пов\'язаних зі зниженням виробітки')
- plt.grid(True)
- plt.tight_layout()
- plt.savefig('images/plot.png')
|