“wie man die Balkenbreite in Python Matplogtlib erhöht” Code-Antworten

wie man die Balkenbreite in Python Matplogtlib erhöht

plt.bar(x, y, width=30)
Python_Coder

Bar Plot Python

import matplotlib.pyplot as plt
import numpy as np
plt.bar(np.arange(0,100),np.arange(0,100))
Tremendous Enceladus

Balkendiagramm in Python

import numpy as npimport matplotlib.pyplot as plt# data to plotn_groups = 4means_frank = (90, 55, 40, 65)means_guido = (85, 62, 54, 20)# create plotfig, ax = plt.subplots()index = np.arange(n_groups)bar_width = 0.35opacity = 0.8rects1 = plt.bar(index, means_frank, bar_width,alpha=opacity,color='b',label='Frank')rects2 = plt.bar(index + bar_width, means_guido, bar_width,alpha=opacity,color='g',label='Guido')plt.xlabel('Person')plt.ylabel('Scores')plt.title('Scores by person')plt.xticks(index + bar_width, ('A', 'B', 'C', 'D'))plt.legend()plt.tight_layout()plt.show()
Arrogant Antelope

Ähnliche Antworten wie “wie man die Balkenbreite in Python Matplogtlib erhöht”

Fragen ähnlich wie “wie man die Balkenbreite in Python Matplogtlib erhöht”

Weitere verwandte Antworten zu “wie man die Balkenbreite in Python Matplogtlib erhöht” auf Python

Durchsuchen Sie beliebte Code-Antworten nach Sprache

Durchsuchen Sie andere Codesprachen