
Data Structure
Networking
RDBMS
Operating System
Java
MS Excel
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
Determine Which Backend is Used by Matplotlib
Using matplotlib.get_backend(), we can get the backend value.
Steps
Import matplotlib.
To return the name of the current backend, use the get_backend() method.
Example
import matplotlib print("Backend used by matplotlib is: ", matplotlib.get_backend())
Output
Backend used by matplotlib is: GTK3Agg
Advertisements