“Comment tracer la barre sur Matplotlib” Réponses codées

Bar Plot Matplotlib

import matplotlib.pyplot as plt
fig = plt.figure()
ax = fig.add_axes([0,0,1,1])
langs = ['C', 'C++', 'Java', 'Python', 'PHP']
students = [23,17,35,29,12]
ax.bar(langs,students)
plt.show()
Exuberant Eel

Comment tracer la barre sur Matplotlib

import matplotlib.pyplot as plt 

data = [5., 25., 50., 20.]
plt.bar(range(len(data)),data)
plt.show()

// to set the thickness of a bar, we can set 'width'
// plt.bar(range(len(data)), data, width = 1.)
regexp27

Réponses similaires à “Comment tracer la barre sur Matplotlib”

Questions similaires à “Comment tracer la barre sur Matplotlib”

Plus de réponses similaires à “Comment tracer la barre sur Matplotlib” dans Python

Parcourir les réponses de code populaires par langue

Parcourir d'autres langages de code