Untitled
unknown
plain_text
3 years ago
193 B
7
Indexable
Never
import matplotlib.pyplot as plt x = [100,200,300,400,500] y = [1139,4093,9160,16195,25820] plt.plot(x, y) plt.xlabel('Dimension') plt.ylabel('Time') plt.title('Project Graph') plt.show()