Raymond Raymond

Pandas DataFrame Plot - Bar Chart

event 2020-04-04 visibility 14,271 comment 0 insights toc
more_vert
insights Stats
toc Table of contents
Pandas DataFrame Plot - Bar Chart

Recently, I've been doing some visualization/plot with Pandas DataFrame in Jupyter notebook. In this article I'm going to show you some examples about plotting bar chart (incl. stacked bar chart with series) with Pandas DataFrame. I'm using Jupyter Notebook as IDE/code execution environment. 

Prepare the data

Use the following code snippet to create a Pandas DataFrame object in memory:

import pandas as pd
from datetime import datetime

def str_to_date(str):
    return datetime.strptime(str, '%Y-%m-%d').date()

data = [{'DATE':str_to_date('2020-01-01'), 'TYPE': 'TypeA', 'SALES': 1000},
        {'DATE':str_to_date('2020-01-01'), 'TYPE': 'TypeB', 'SALES': 200},
        {'DATE':str_to_date('2020-01-01'), 'TYPE': 'TypeC', 'SALES': 300},
        {'DATE':str_to_date('2020-02-01'), 'TYPE': 'TypeA', 'SALES': 700},
        {'DATE':str_to_date('2020-02-01'), 'TYPE': 'TypeB', 'SALES': 400},
        {'DATE':str_to_date('2020-02-01'), 'TYPE': 'TypeC', 'SALES': 500},
        {'DATE':str_to_date('2020-03-01'), 'TYPE': 'TypeA', 'SALES': 300},
        {'DATE':str_to_date('2020-03-01'), 'TYPE': 'TypeB', 'SALES': 900},
        {'DATE':str_to_date('2020-03-01'), 'TYPE': 'TypeC', 'SALES': 100}
       ]
df = pd.DataFrame(data)
df

The content of the dataframe looks like the following:

DATETYPESALES
02020-01-01TypeA1000
12020-01-01TypeB200
22020-01-01TypeC300
32020-02-01TypeA700
42020-02-01TypeB400
52020-02-01TypeC500
62020-03-01TypeA300
72020-03-01TypeB900
82020-03-01TypeC100


We will use this dataframe to create visuals/charts.

pandas.DataFrame.plot function

Refer to the following documentation about pandas.DataFrame.plot function.

pandas.DataFrame.plot

* If you are using different version of Pandas, please navigate to the corresponded document version.

matplotlib

Plot function depends on matplotlib, please ensure you have it installed in your system. If not, you can use the following command to install it:

!pip install matplotlib

The output looks like this:

2020040404408-image.png

Bar chart

Use the following code to plot a bar chart:

df.plot(kind='bar', x='DATE', y='SALES')

The chart looks like the following:

2020040404911-image.png

Bar chart - groupby

Let's add a groupby and see how it looks like:

df.groupby(['DATE','TYPE']).sum().plot(kind='bar')

2020040405428-image.png

The output is slightly better as it added TYPE to X-axis. 

Bar chart - groupby and unstack

Let's unstack the dataframe after groupby.

df.groupby(['DATE','TYPE']).sum().unstack().plot(kind='bar')

The output now looks like this:

2020040405759-image.png

It is what we are looking for however there is a work 'None' in the legend.

To get rid of that, we just need to specify y attribute.

df.groupby(['DATE','TYPE']).sum().unstack().plot(kind='bar',y='SALES')

The chart now looks like this:

2020040411047-image.png

Stacked bar chart

Setting parameter stacked to True in plot function will change the chart to a stacked bar chart.

df.groupby(['DATE','TYPE']).sum().unstack().plot(kind='bar',y='SALES', stacked=True)

2020040411238-image.png

Cumulative stacked bar chart

To create a cumulative stacked bar chart, we need to use groupby function again:

df.groupby(['DATE','TYPE']).sum().groupby(level=[1]).cumsum().unstack().plot(kind='bar',y='SALES', stacked = True)

The chart now looks like this:

2020040411618-image.png

We group by level=[1] as that level is Type level as we want to accumulate sales by type.

Horizontal bar chart

To create horizontal bar charts, we just need to change chart kind to barh.

df.groupby(['DATE','TYPE']).sum().unstack().plot(kind='barh',y='SALES')

2020040442150-image.png

More from Kontext
comment Comments
No comments yet.

Please log in or register to comment.

account_circle Log in person_add Register

Log in with external accounts