“Como plotar barra no matplotlib” Respostas de código

Plotagem de barra 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

Como plotar barra no 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

Respostas semelhantes a “Como plotar barra no matplotlib”

Perguntas semelhantes a “Como plotar barra no matplotlib”

Mais respostas relacionadas para “Como plotar barra no matplotlib” em Python

Procure respostas de código populares por idioma

Procurar outros idiomas de código