Bar chart plotted from a pandas series

Plot a Bar Chart of Pandas Series Values

You can better visualize a pandas series with categorical values via a bar plot of counts. In this tutorial, we will look at how to plot a bar chart of pandas series values.

For a bar chart, you first need to create a series of counts of each unique value (use the pandas value_counts() function) and then proceed to plot the resulting series of counts using the pandas series plot() function.

The plot() function plots a line chart of the series values by default but you can specify the type of chart to plot using the kind parameter. To plot a bar chart, pass ‘bar’ to the kind parameter. The following is the syntax:

# bar chart using pandas series plot()
s.value_counts().plot(kind='bar')

Here, s is the pandas series with categorical values which is converted to a series of counts using the value_counts() function. The pandas series plot() function returns a matplotlib axes object to which you can add additional formatting.

Let’s look at some examples of plotting a pandas series values as a bar chart. First, we’ll create a sample pandas series which we will be using throughout this tutorial.

import pandas as pd

# pandas series Wimbledon winners from 2015 to 2019
wimbledon_winners = pd.Series(index=[2015, 2016, 2017, 2018, 2019],
                   data=['Novak Djokovic', 'Andy Murray', 'Roger Federer', 'Novak Djokovic', 'Novak Djokovic'],
                   name='Winners')

# display the series
print(wimbledon_winners)

Output:

2015    Novak Djokovic
2016       Andy Murray
2017     Roger Federer
2018    Novak Djokovic
2019    Novak Djokovic
Name: Winners, dtype: object

You can see the contents of the series object above. We now have a pandas series containing the name of Wimbledon Winners from 2015 to 2019 with the year as its index.

Let’s create a series of count of championships won by each player during the period.

📚 Data Science Programs By Skill Level

Introductory

Intermediate ⭐⭐⭐

Advanced ⭐⭐⭐⭐⭐

🔎 Find Data Science Programs 👨‍💻 111,889 already enrolled

Disclaimer: Data Science Parichay is reader supported. When you purchase a course through a link on this site, we may earn a small commission at no additional cost to you. Earned commissions help support this website and its team of writers.

# series of counts
wimbledon_wins_count = wimbledon_winners.value_counts()
# print the counts
print(wimbledon_wins_count)

Output:

Novak Djokovic    3
Andy Murray       1
Roger Federer     1
Name: Winners, dtype: int64

The returned series contains counts of victories by each player in the original series.

To create a bar chart from the series values we’ll pass kind='bar' to the pandas series plot() function. For example, let’s see its usage on the “wimbledon_wins_count” series created above.

wimbledon_wins_count.plot(kind='bar')

Output:

Bar plot of victory counts

The above bar chart shows the distribution of Wimbledon victories from 2015 to 2019. You can see that Novak Djokovic has won 3 championships during that period while Andy Murray and Roger Federer have won 1 each. Note that the resulting plot is a matplotlib bar chart.

For more on the pandas series plot() function, refer to its documentation.

You can also customize the formatting of the chart. For instance, you can add the axes labels, chart title, change colors and fonts, etc. Since the returned plot is a matplotlib axes object, you can apply any formatting that would work with matplotlib plots.

Let’s go ahead and rotate the xtick labels, add a label for the y-axis, and add a title to our plot.

# create the bar plot
ax = wimbledon_wins_count.plot(kind='bar')
# rotate xtick labels
ax.set_xticklabels(ax.get_xticklabels(), rotation=0)
# set the y-axis label
ax.set_ylabel("Victories")
# set the title
ax.set_title("Distribution of Wimbledon Victories 2015-2019")

Output:

Bar chart with additional formattings.

The above chart now has the xtick labels placed horizontally, “Victories” as its y-axis label, and “Distribution of Wimbledon Victories 2015-2019” as its title.

For more on bar charts and their formatting in matplotlib, refer to our tutorial on matplotlib bar charts.

With this, we come to the end of this tutorial. The code examples and results presented in this tutorial have been implemented in a Jupyter Notebook with a python (version 3.8.3) kernel having pandas version 1.0.5


Subscribe to our newsletter for more informative guides and tutorials.
We do not spam and you can opt out any time.


Tutorials on pandas series –

Author

  • Piyush Raj

    Piyush is a data professional passionate about using data to understand things better and make informed decisions. He has experience working as a Data Scientist in the consulting domain and holds an engineering degree from IIT Roorkee. His hobbies include watching cricket, reading, and working on side projects.

Scroll to Top