plot data matplotlib code example
Example 1: how to plot a graph using matplotlib
from matplotlib import pyplot as plt
plt.plot([0, 1, 2, 3, 4, 5], [0, 1, 4, 9, 16, 25])
plt.show()
Example 2: how to plot a scatter plot in matplotlib
import matplotlib.pyplot as plt
%matplotlib inline
plt.figure(figsize=(10,6))
plt.scatter(x, y, label = "label_name" )
plt.xlabel('X Values')
plt.ylabel('Y Values')
plt.title('Scatter Title')
plt.legend()
plt.show()
Example 3: 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 4: pylab plotting data
pylab.plot(x, y)
pylab.xlabel('this is x!')
pylab.ylabel('this is y!')
pylab.title('My First Plot')