pyplot .plot code example
Example 1: python plot
import matplotlib.pyplot as plt
plt.plot([1, 2, 3, 4], [1, 4, 9, 16])
plt.show()
Example 2: plot using matplotlib
import matplotlib.pyplot as plt
plt.plot([1, 2, 3, 4])
plt.ylabel('some numbers')
plt.show()
Example 3: matplotlib.pyplot
import numpy as np
import matplotlib.pyplot as plt
x = np.arange(0, 5, 0.1);
y = np.sin(x)
plt.plot(x, y)
Example 4: how do a plot on matplotlib python
import matplotlib.pyplot as plt
%matplotlib inline
plt.plot(data)
plt.ylabel('y axis means ...')
plt.xlabel('x axis means ...')
Example 5: matplotlib.pyplot
plt.plot([1, 2, 3, 4], [1, 4, 9, 16])