Answers for "matplotlib bar chart from pandas dataframe"

4

plotting a bar chart with pandas

df = pd.DataFrame({'lab':['A', 'B', 'C'], 'val':[10, 30, 20]})
ax = df.plot.bar(x='lab', y='val', rot=0)
Posted by: Guest on May-12-2021
3

matplotlib bar chart

import matplotlib.pyplot as plt

# Create a Simple Bar Plot of Three People's Ages

# Create a List of Labels for x-axis
names = ["Brad", "Bill", "Bob"]

# Create a List of Values (Same Length as Names List)
ages = [9, 5, 10]

# Make the Chart
plt.bar(names, ages)

# Show the Chart
plt.show()
Posted by: Guest on July-04-2020

Code answers related to "matplotlib bar chart from pandas dataframe"

Python Answers by Framework

Browse Popular Code Answers by Language