python - Choosing a matplotlib backend for a specific IPython profile -
matplotlib
has config file , ipython
has own. 1 has precedence when comes setting things matplotlib
backends?
for example, config file matplotlib
says use specific backend, modify ipython startup or config files use different one. 1 used when start ipython , import matplotlib
?
more generally, right way set things different profiles use different matplotlib
backends or matplotlib configurations?
ipython configuration used, ipython chooses matplotlib backend.
for reference, see ipython:core/pylabtools.py:activate_matplotlib , notice how matplotlib.use(backend)
called explicitly.
Comments
Post a Comment