Matplotlib Line
import matplotlib.pyplot as plt
plt.plot([ 1, 2, 3, 4 ],[ 23, 42, 10, 19 ])
plt.show()
#plt.savefig('line.png')
Press ← or → to navigate between chapters
Press S or / to search in the book
Press ? to show this help
Press Esc to hide this help
import matplotlib.pyplot as plt
plt.plot([ 1, 2, 3, 4 ],[ 23, 42, 10, 19 ])
plt.show()
#plt.savefig('line.png')