
- 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
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 Questions & Answers
- 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 use the Timeout command in PowerShell?
- How to set the current figure in Matplotlib?
- How to set a default colormap in Matplotlib?
- Node.js – Timeout-hasRef() & Timeout-refresh() methods
- Node.js – Timeout-ref() & Timeout-unref() method
- How to set X-axis values in Matplotlib Python?
- How do I set color to Rectangle in Matplotlib?
- How to set NetworkX edge labels offset in Matplotlib?
- How to set the xticklabels for date in matplotlib?
- How to debug Lock wait timeout exceeded on MySQL?
Advertisements