etutorialspoint
  • Home
  • PHP
  • MySQL
  • MongoDB
  • HTML
  • Javascript
  • Node.js
  • Express.js
  • Python
  • Jquery
  • R
  • Kotlin
  • DS
  • Blogs
  • Theory of Computation

Python Matplotlib Bar Plot

In this article, you will learn about the Python Matplotlib Bar Plot.

Data exploration is the initial step in data analysis. Data exploration can use a combination of manual methods and automated tools such as data visualizations, charts, and diagrams. One of the important diagrams is the bar plot, which is widely used in many presentations. The Bar plot represents data in the rectangular bars with heights proportional to the values that they represent. It is used to compare things between different groups or to track changes over time. It shows the relationship between a numeric and a categorical variable. It can also display values for several levels of grouping. The bars can be plotted vertically or horizontally. Bar graphs are best when there are big changes in data over time. Matplotlib provides the bar() method to plot a bar graph.





Syntax of Bar Plot

matplotlib.pyplot.bar(x, height, width, bottom, align)

x - It specifies the sequence of scalars. The x coordinates of bar.
height - It specifies a scalar or a sequence of scalars. The height of the bars.
width (optional)- The width of the bars(by default 0.8).
bottom (optional)- The y coordinate(s) of the bars bases.
align (optional)- Alignment of the bars to the x coordinates.

The function returns a Matplotlib container object with all bars.





Python Basic Example of Bar Graph

Here is a very basic bar plot -

import matplotlib.pyplot as plt

fig = plt.figure()
ax = fig.add_axes([0,0,1,1])
ax.bar([1, 2, 3, 4, 5, 6], [4, 3, 7, 9, 5, 2])
plt.show()

The above code returns the following output -

Matplotlib Bar Plot

Horizontal Bar Plot

The barh() function is used to make a horizontal bar plot. The bars are positioned at y with the given alignment. Here is a simple example of a horizontal bar plot that plots the temperature of different cities -

import matplotlib.pyplot as plt

fig = plt.figure()
ax = fig.add_axes([0,0,1,1])
city = ['Dhanbad', 'Bokaro', 'Ranchi', 'Koderma', 'Giridih']
temp = [35,37,32,33,38]
ax.barh(city,temp,0.3)
plt.show()
Matplotlib Horizontal Bar Plot



Set Label Name, Title & Color of the Bar Plot

The above-mentioned bar plots are very basic. So, in the given example, you will learn to add the label name, the title of the plot, and set the color of the bar. Here, we have also used the ggplot style sheet. The ggplot is a plotting system for Python based on R's ggplot2 and the Grammar of Graphics. It is built for making professional looking plots quickly with minimal code.

import matplotlib.pyplot as plt
plt.style.use('ggplot')

city = ['Dhanbad', 'Bokaro', 'Ranchi', 'Koderma', 'Giridih']
temp = [35,37,32,33,38]

x_pos = [i for i, _ in enumerate(city)]

plt.bar(city,temp,0.3,color='red')

plt.ylabel("Temperature")
plt.xlabel("City")
plt.title("Temperature of Jhar Popular Cities")
plt.show()
Matplotlib ggplot

Multiple Bar Plots

A multiple bar plot is plot that has multiple bars for each category. In this, we can compare as many sets of data as you want. The process for creating a multiple bar graph is the same as creating any other bar graph, only you will have to set different colors to represent different sets of data.

import matplotlib.pyplot as plt
import numpy as np
plt.style.use('ggplot')

state = ['Delhi', 'MP', 'UP', 'Tamil', 'Assam']
women_champion = [35,37,32,33,38]
men_champion = [30,22,40,42,35]

inv = np.arange(5)

x_pos = [i for i, _ in enumerate(state)]

plt.bar(inv,women_champion,0.25,color='red')
plt.bar(inv + 0.25,men_champion,0.25,color='blue')

plt.ylabel("Champions")
plt.xlabel("States")
plt.title("Champions of Different States")
plt.xticks(inv + 0.25 / 2, state)
plt.show()

The above code returns the following output -

Matplotlib Multiple Bar Plot



Matplotlib Stacked Bar Chart

A stacked bar chart is a visual representation of data. It uses the length of two or more stacked bars to represent the components of a total quantitative value across a range of different categorical values. Here is a very simple example of a stacked bar chart -

import matplotlib.pyplot as plt
import numpy as np
plt.style.use('ggplot')

state = ['Delhi', 'MP', 'UP', 'Tamil', 'Assam']
gold_champion =  np.array([32, 15, 12, 29, 25])
silver_champion = np.array([35, 20, 28, 21, 10])
bronze_champion = np.array([40, 35, 29, 10, 27])

inv = np.arange(5)

inv = [i for i, _ in enumerate(state)]

plt.bar(inv,gold_champion,0.25,color='red',bottom=silver_champion+bronze_champion)
plt.bar(inv,silver_champion,0.25,color='blue',bottom=bronze_champion)
plt.bar(inv,bronze_champion,0.25,color='green')

plt.ylabel("Champions")
plt.xlabel("States")
plt.title("Champions of Different States")
plt.xticks(inv, state)
plt.show()

The output of this code is shown in the following image -

Matplotlib Multiple Stacked Bar Plot



Related Articles

Simple Matplotlib Animation Example
Matplotlib Pie Chart
Python Line Plot Using Matplotlib
Python Matplotlib 3D Plot
How to save figure in matplotlib pyplot
Python Matplotlib Scatter Plot
Python Pandas Plotting
How to capture a video in Python OpenCV and save
Python OpenCV Overlaying or Blending Two Images
Contour Detection using Python OpenCV
Harris Corner Detection using Python OpenCV
Human detection OpenCV
Face Recognition OpenCV Source Code
Canny Edge Detector OpenCV Python
Python NumPy: Overview and Examples
Image processing using Python Pillow
Python OpenCV Histogram Equalization
Python OpenCV Histogram of Color Image
Python OpenCV Histogram of Grayscale Image
Python OpenCV Image Filtering
Python OpenCV ColorMap
Python OpenCV Gaussian Blur Filtering
Python OpenCV Overview and Examples




Most Popular Development Resources
Retrieve Data From Database Without Page refresh Using AJAX, PHP and Javascript
-----------------
PHP Create Word Document from HTML
-----------------
How to get data from XML file in PHP
-----------------
Hypertext Transfer Protocol Overview
-----------------
PHP code to send email using SMTP
-----------------
Characteristics of a Good Computer Program
-----------------
How to encrypt password in PHP
-----------------
Create Dynamic Pie Chart using Google API, PHP and MySQL
-----------------
PHP MySQL PDO Database Connection and CRUD Operations
-----------------
Splitting MySQL Results Into Two Columns Using PHP
-----------------
Dynamically Add/Delete HTML Table Rows Using Javascript
-----------------
How to get current directory, filename and code line number in PHP
-----------------
How to add multiple custom markers on google map
-----------------
Get current visitor\'s location using HTML5 Geolocation API and PHP
-----------------
Fibonacci Series Program in PHP
-----------------
Simple star rating system using PHP, jQuery and Ajax
-----------------
How to Sort Table Data in PHP and MySQL
-----------------
Simple pagination in PHP with MySQL
-----------------
How to generate QR Code in PHP
-----------------
Submit a form data using PHP, AJAX and Javascript
-----------------
PHP MYSQL Advanced Search Feature
-----------------
jQuery loop over JSON result after AJAX Success
-----------------
Recover forgot password using PHP7 and MySQLi
-----------------
PHP Server Side Form Validation
-----------------
jQuery File upload progress bar with file size validation
-----------------
PHP user registration and login/ logout with secure password encryption
-----------------
To check whether a year is a leap year or not in php
-----------------
Php file based authentication
-----------------
Simple File Upload Script in PHP
-----------------
Simple PHP File Cache
-----------------
PHP User Authentication by IP Address
-----------------
Calculate the distance between two locations using PHP
-----------------
PHP Secure User Registration with Login/logout
-----------------
Polling system using PHP, Ajax and MySql
-----------------
How to print specific part of a web page in javascript
-----------------
Detect Mobile Devices in PHP
-----------------
Simple Show Hide Menu Navigation
-----------------
Simple way to send SMTP mail using Node.js
-----------------
SQL Injection Prevention Techniques
-----------------
Get Visitor\'s location and TimeZone
-----------------
Preventing Cross Site Request Forgeries(CSRF) in PHP
-----------------
Google Street View API Example
-----------------
PHP Sending HTML form data to an Email
-----------------
Driving route directions from source to destination using HTML5 and Javascript
-----------------
CSS Simple Menu Navigation Bar
-----------------
Date Timestamp Formats in PHP
-----------------
PHP Programming Error Types
-----------------
Convert MySQL to JSON using PHP
-----------------
Set and Get Cookies in PHP
-----------------
How to add google map on your website and display address on click marker
-----------------
How to select/deselect all checkboxes using Javascript
-----------------
PHP Getting Document of Remote Address
-----------------
How to display PDF file in web page from Database in PHP
-----------------
File Upload Validation in PHP
-----------------
PHP FTP Connection and File Handling
-----------------


Most Popular Blogs
Most in demand programming languages
Best mvc PHP frameworks in 2019
MariaDB vs MySQL
Most in demand NoSQL databases for 2019
Best AI Startups In India
Kotlin : Android App Development Choice
Kotlin vs Java which one is better
Top Android App Development Languages in 2019
Web Robots
Data Science Recruitment of Freshers - 2019


Interview Questions Answers
Basic PHP Interview
Advanced PHP Interview
MySQL Interview
Javascript Interview
HTML Interview
CSS Interview
Programming C Interview
Programming C++ Interview
Java Interview
Computer Networking Interview
NodeJS Interview
ExpressJS Interview
R Interview


Popular Tutorials
PHP Tutorial (Basic & Advance)
MySQL Tutorial & Exercise
MongoDB Tutorial
Python Tutorial & Exercise
Kotlin Tutorial & Exercise
R Programming Tutorial
HTML Tutorial
jQuery Tutorial
NodeJS Tutorial
ExpressJS Tutorial
Theory of Computation Tutorial
Data Structure Tutorial
Javascript Tutorial




General Knowledge

listen
listen
listen
listen
listen
listen
listen
listen
listen


Learn Popular Language

listen
listen
listen
listen
listen

Blogs

  • Jan 3

    Stateful vs Stateless

    A Stateful application recalls explicit subtleties of a client like profile, inclinations, and client activities...

  • Dec 29

    Best programming language to learn in 2021

    In this article, we have mentioned the analyzed results of the best programming language for 2021...

  • Dec 20

    How is Python best for mobile app development?

    Python has a set of useful Libraries and Packages that minimize the use of code...

  • July 18

    Learn all about Emoji

    In this article, we have mentioned all about emojis. It's invention, world emoji day, emojicode programming language and much more...

  • Jan 10

    Data Science Recruitment of Freshers

    In this article, we have mentioned about the recruitment of data science. Data Science is a buzz for every technician...

Follow us

  • etutorialspoint facebook
  • etutorialspoint twitter
  • etutorialspoint linkedin
etutorialspoint youtube
About Us      Contact Us


  • eTutorialsPoint©Copyright 2016-2022. All Rights Reserved.