
- Python Basic Tutorial
- Python - Home
- Python - Overview
- Python - Environment Setup
- Python - Basic Syntax
- Python - Comments
- Python - Variables
- Python - Data Types
- Python - Operators
- Python - Decision Making
- Python - Loops
- Python - Numbers
- Python - Strings
- Python - Lists
- Python - Tuples
- Python - Dictionary
- Python - Date & Time
- Python - Functions
- Python - Modules
- Python - Files I/O
- Python - Exceptions
How to set timeout to pyplot.show() in Matplotlib?
To set timeout to pyplot.show() in Matplotlib, we can take the following steps −
- Set the figure size and adjust the padding between and around the subplots.
- Create a new backend-specific subclass of '.Timer'.
- Add a callback function that will be called whenever one of the plt.close() properties changes.
- Plot a list of data points.
- Start the timer.
- 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 fig = plt.figure() # set the timer interval 5000 milliseconds timer = fig.canvas.new_timer(interval = 5000) timer.add_callback(plt.close) plt.plot([1,2,3,4,5]) plt.ylabel('Y-axis Data') timer.start() plt.show()
Output
The window will close automatically after 5 seconds, as we have set the timer interval at 5000 milliseconds.
- Related Articles
- How to Set Wget Connection Timeout in Linux?
- How to set Selenium Python WebDriver default timeout?
- How to set a Timeout for an AsyncTask in Android?
- How to set a Timeout for an AsyncTask in Kotlin Android?
- How to set Page Load Timeout using C# using Selenium WebDriver?
- How do I set the Selenium webdriver get timeout?
- How to set the current figure in Matplotlib?
- How to set a default colormap in Matplotlib?
- How to use the Timeout command in PowerShell?
- How to Increase SSH Connection Timeout in Linux
- How to set NetworkX edge labels offset in Matplotlib?
- How to set X-axis values in Matplotlib Python?
- How do I set color to Rectangle in Matplotlib?
- How to set the xticklabels for date in matplotlib?
- How to set legend marker size and alpha in Matplotlib?

Advertisements