Untitled

 avatar
unknown
plain_text
4 years ago
193 B
10
Indexable
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()
Editor is loading...