Bar graph from dataframe groupby

jhaywoo8 picture jhaywoo8 · Oct 28, 2016 · Viewed 33.5k times · Source
import pandas as pd
import numpy as np
import matplotlib.pyplot as plt

df = pd.read_csv("arrests.csv")
df = df.replace(np.nan,0)
df = df.groupby(['home_team'])['arrests'].mean()

I'm trying to create a bar graph for dataframe. Under home_team are a bunch of team names. Under arrests are a number of arrests at each date. I've basically grouped the data by teams with the average arrests for that team. I'm trying to create a bar graph for this but am not sure how to proceed since one column doesn't have a header.

Data

Answer

piRSquared picture piRSquared · Oct 29, 2016

copying data from your link and running df = pd.read_clipboard()

then using your code

df = df.replace(np.nan,0)
df = df.groupby(['home_team'])['arrests'].mean()

df.plot.bar()

enter image description here