“tracé de barre horizontale matplotlib” Réponses codées

Comment tracer la barre horizontale sur Matplotlib

import matplotlib.pyplot as plt 

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

Plot de barre horizontal Python

import seaborn as sns

sns.barplot(data=df, orient = 'h')
The Frenchy

tracé de barre horizontale matplotlib

import matplotlib.pyplot as plt
   
Product = ['Computer','Monitor','Laptop','Printer','Tablet']
Quantity = [320,450,300,120,280]

plt.barh(Product,Quantity)
plt.title('Store Inventory')
plt.ylabel('Product')
plt.xlabel('Quantity')
plt.show()
Misty Meerkat

Réponses similaires à “tracé de barre horizontale matplotlib”

Questions similaires à “tracé de barre horizontale matplotlib”

Plus de réponses similaires à “tracé de barre horizontale matplotlib” dans Python

Parcourir les réponses de code populaires par langue

Parcourir d'autres langages de code