Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- import matplotlib.pyplot as plt
- import numpy as np
- xpoints = np.array([1, 10])
- ypoints = np.array([100, 200])
- plt.plot(xpoints, ypoints)
- plt.show()
- plt.plot(ypoints, marker = '*', ms = 20, mec = 'firebrick', mfc = 'firebrick', linestyle = 'dotted')
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement