- 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 change the default path for "save the figure" in Matplotlib?
To change the default path for "save the figure", we can use rcParams["savefig.directory"] to set the directory path.
Steps
- Set the figure size and adjust the padding between and around the subplots.
- Create random data using numpy.
- Use imshow() method. Display the data as an image, i.e., on a 2D regular raster.
- Save the figure using plt.savefig() method.
Example
import os import numpy as np from matplotlib import pyplot as plt plt.rcParams["figure.figsize"] = [7.50, 3.50] plt.rcParams["figure.autolayout"] = True dir_name = "C:/Windows/Temp/" plt.rcParams["savefig.directory"] = os.chdir(os.path.dirname(dir_name)) data = np.random.rand(5, 5) plt.imshow(data, cmap="copper") plt.savefig("img.png")
Output
When we execute the code, it will save the following plot as "img.png" in the specified path: " C:/Windows/Temp/"
- Related Articles
- Change the default background color for Matplotlib plots
- How to set the matplotlib figure default size in ipython notebook?
- How do you change the default font color for all text in Matplotlib?
- How to make pylab.savefig() save image for 'maximized' window instead of default size in Matplotlib?
- Change figure size and figure format in Matplotlib
- How to change the default configuration in Git?
- Save figure as file from iPython notebook using Matplotlib
- How to change the default type of points for scatterplot using ggplot2 in R?
- How to change the figsize for matshow() in Jupyter notebook using Matplotlib?
- How to set the current figure in Matplotlib?
- How to change the datetime tick label frequency for Matplotlib plots?
- Change the default location for saving sketches in Arduino IDE
- How to change the legend fontname in Matplotlib?
- How to Specify the Path to save Newman report on Jenkins using Postman?
- How to save Matplotlib 3d rotating plots?

Advertisements