“horizontaler Stangenplot Matplotlib” Code-Antworten

Wie man horizontaler Balken auf Matplotlib darstellt

import matplotlib.pyplot as plt 

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

horizontaler Bar -Plot -Python

import seaborn as sns

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

horizontaler Stangenplot 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

Ähnliche Antworten wie “horizontaler Stangenplot Matplotlib”

Fragen ähnlich wie “horizontaler Stangenplot Matplotlib”

Weitere verwandte Antworten zu “horizontaler Stangenplot Matplotlib” auf Python

Durchsuchen Sie beliebte Code-Antworten nach Sprache

Durchsuchen Sie andere Codesprachen