plt.plot bar code example
Example 1: how to do scatter plot in pyplot
import numpy as npimport matplotlib.pyplot as plt
N = 500x = np.random.rand(N)
y = np.random.rand(N)
colors = (0,0,0)
area = np.pi*3
plt.scatter(x, y, s=area, c=colors, alpha=0.5)
plt.title('Scatter plot pythonspot.com')
plt.xlabel('x')
plt.ylabel('y')
plt.show()
Example 2: matplotlib bar chart
import matplotlib.pyplot as plt
names = ["Brad", "Bill", "Bob"]
ages = [9, 5, 10]
plt.bar(names, ages)
plt.show()
Example 3: how to increase bar width in python matplogtlib
plt.bar(x, y, width=30)
Example 4: bar plot python
import matplotlib.pyplot as plt
import numpy as np
plt.bar(np.arange(0,100),np.arange(0,100))