
- Trending Categories
Data Structure
Networking
RDBMS
Operating System
Java
iOS
HTML
CSS
Android
Python
C Programming
C++
C#
MongoDB
MySQL
Javascript
PHP
- Selected Reading
- UPSC IAS Exams Notes
- Developer's Best Practices
- Questions and Answers
- Effective Resume Writing
- HR Interview Questions
- Computer Glossary
- Who is Who
Vertical Histogram in Python and Matplotlib
To plot vertical histogram in Python and Matplotlib, we can take the following steps −
- Set the figure size and adjust the padding between and around the subplots.
- Create a list of data points.
- Plot a histogram with vertical orientation.
- To display the figure, use show() method.
Example
import matplotlib.pyplot as plt plt.rcParams["figure.figsize"] = [7.50, 3.50] plt.rcParams["figure.autolayout"] = True x = [1, 2, 3, 1, 2, 3, 4, 1, 3, 4, 5] plt.hist(x, orientation="vertical") plt.show()
Output
- Related Questions & Answers
- Barchart with vertical labels in Python/Matplotlib
- Python - Plot a Histogram for Pandas Dataframe with Matplotlib?
- Legend with vertical line in matplotlib
- Drawing average line in histogram in Matplotlib
- Histogram for discrete values with Matplotlib
- Matplotlib histogram with multiple legend entries
- How to plot hexbin histogram in Matplotlib?
- Fill between two vertical lines in matplotlib
- Manipulation on vertical space in Matplotlib subplots
- How to plot collections.Counter histogram using Matplotlib?
- Setting a relative frequency in a Matplotlib histogram
- Getting information for bins in Matplotlib histogram function
- How to plot a 2D histogram in Matplotlib?
- How to specify different colors for different bars in a Python matplotlib histogram?
- Plotting a histogram from pre-counted data in Matplotlib
Advertisements