y axis with datapoints in matplotlib code example
Example 1: import pyplot python
import matplotlib.pyplot as plt
Example 2: pyplot x vs y
plt.plot([1, 2, 3, 4], [1, 4, 9, 16])
import matplotlib.pyplot as plt
plt.plot([1, 2, 3, 4], [1, 4, 9, 16])