- Trending Categories
Data Structure
Networking
RDBMS
Operating System
Java
MS Excel
iOS
HTML
CSS
Android
Python
C Programming
C++
C#
MongoDB
MySQL
Javascript
PHP
Physics
Chemistry
Biology
Mathematics
English
Economics
Psychology
Social Studies
Fashion Studies
Legal Studies
- Selected Reading
- UPSC IAS Exams Notes
- Developer's Best Practices
- Questions and Answers
- Effective Resume Writing
- HR Interview Questions
- Computer Glossary
- Who is Who
How to plot CSV data using Matplotlib and Pandas in Python?
To plot CSV data using Matplotlib and Pandas in Python, we can take the following steps −
- Set the figure size and adjust the padding between and around the subplots.
- Make a list of headers of the .CSV file.
- Read the CSV file with headers.
- Set the index and plot the dataframe.
- To display the figure, use show() method.
Example
import pandas as pd import matplotlib.pyplot as plt plt.rcParams["figure.figsize"] = [7.50, 3.50] plt.rcParams["figure.autolayout"] = True headers = ['Name', 'Age', 'Marks'] df = pd.read_csv('student.csv', names=headers) df.set_index('Name').plot() plt.show()
Output
- Related Articles
- Plot data from CSV file with Matplotlib
- How to plot arbitrary markers on a Pandas data series using Matplotlib?
- Frequency plot in Python/Pandas DataFrame using Matplotlib
- How to Convert CSV to Excel using Pandas in Python?
- How to plot histograms from dataframes in Pandas using Matplotlib?
- How to plot a kernel density plot of dates in Pandas using Matplotlib?
- How do I plot hatched bars using Pandas and Matplotlib?
- How to plot MFCC in Python using Matplotlib?
- How to plot vectors in Python using Matplotlib?
- How to plot a histogram using Matplotlib in Python with a list of data?
- How to plot an area in a Pandas dataframe in Matplotlib Python?
- How to plot certain rows of a Pandas dataframe using Matplotlib?
- How to plot an array in Python using Matplotlib?
- How to plot 3D graphs using Python Matplotlib?
- How to plot a Pandas Dataframe with Matplotlib?

Advertisements