Article Categories
- All Categories
-
Data Structure
-
Networking
-
RDBMS
-
Operating System
-
Java
-
MS Excel
-
iOS
-
HTML
-
CSS
-
Android
-
Python
-
C Programming
-
C++
-
C#
-
MongoDB
-
MySQL
-
Javascript
-
PHP
Selected Reading
How do you determine which backend is being 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
