main points on matplotlib code example
Example 1: matplotlib line plot
from matplotlib import pyplot as plt
# Median Developer Salaries by Age
dev_x = [25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35]
dev_y = [38496, 42000, 46752, 49320, 53200,
56000, 62316, 64928, 67317, 68748, 73752]
plt.plot(dev_x, dev_y)
plt.xlabel('Ages')
plt.ylabel('Median Salary (USD)')
plt.title('Median Salary (USD) by Age')
plt.show()
#Basic line graph using python module matplotlib
Example 2: how to import matplotlib.pyplo in python
import matplotlib.pylot as plt
Example 3: how to plotting points on matplotlib
import matplotlib.pyplot as plt
import numpy as np
data = np.random.rand(1024,2)
plt.scatter(data[:,0],data[:,1])
plt.show()
// Don't be
// fooled by this simplicity— plt.scatter() is a rich command.
Example 4: matplotlib include first number in plotter
ax.set_xticks(np.arange(len(x)))
ax.set_xticklabels(x, rotation = 45)