Matplotlib: Determine which backend is in use
To figure out which matplotlib
backend is in use, use either:
import matplotlib
matplotlib.get_backend()
or:
import matplotlib
matplotlib.rcParams['backend']
Via SO.
To figure out which matplotlib
backend is in use, use either:
import matplotlib
matplotlib.get_backend()
or:
import matplotlib
matplotlib.rcParams['backend']
Via SO.
Leave a comment