“wie man eine Bar auf Matplotlib aufteilt” Code-Antworten

Bar -Diagramm -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

wie man eine Bar auf Matplotlib aufteilt

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

Ähnliche Antworten wie “wie man eine Bar auf Matplotlib aufteilt”

Fragen ähnlich wie “wie man eine Bar auf Matplotlib aufteilt”

Weitere verwandte Antworten zu “wie man eine Bar auf Matplotlib aufteilt” auf Python

Durchsuchen Sie beliebte Code-Antworten nach Sprache

Durchsuchen Sie andere Codesprachen