- 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
Setting the size of the plotting canvas in Matplotlib
To set the size of the plotting canvas in matplotlib, we can take the following steps:
- Set the figure size and adjust the padding between and around the subplots. Use figsize 7.50 and 3.50 to set the figure size.
- Create x and y data points using numpy.
- Plot x and y data points using plot() method.
- To display the figure, use show() method.
Example
import numpy as np from matplotlib import pyplot as plt plt.rcParams["figure.figsize"] = [7.50, 3.50] plt.rcParams["figure.autolayout"] = True x = np.linspace(-2, 2, 100) y = np.sin(x) plt.plot(x, y) plt.show()
Output
- Related Articles
- How to find the size of the plotting window in R?
- Setting the size of the radial gradients using CSS
- Setting the display range suplot of errorbars in matplotlib
- Plotting grids across the subplots in Python Matplotlib
- Setting the aspect ratio of a 3D plot in Matplotlib
- Plotting only the upper/lower triangle of a heatmap in Matplotlib
- HTML5 Canvas Font Size Based on Canvas Size
- Setting the spacing between grouped bar plots in Matplotlib
- Plotting power spectral density in Matplotlib
- Plotting profile histograms in Python Matplotlib
- Plotting with seaborn using the matplotlib object-oriented interface
- Setting the limits on a colorbar of a contour plot in Matplotlib
- Plotting a cumulative graph of Python datetimes in Matplotlib
- Plotting two different arrays of different lengths in matplotlib
- Plotting points on the surface of a sphere in Python's Matplotlib

Advertisements