web-dev-qa-db-ja.com

インラインRetinaMatplotlibフィギュア用のJupyterノートブックの構成

の効果が欲しい

import numpy as np
import matplotlib.pyplot as plt
%matplotlib inline
%config InlineBackend.figure_format='retina'

すべてのJupyterノートブックのリリース時ですが、これを実現するためのcurrentアプローチが何であるかがわかりません。ここや他の場所には多くの答えがありますが、私が見つけることができるものはどれも最新のものではないようです。

currentバージョンのJupyterノートブック(一般的にはIPythonではありません!)で上記を達成するにはどうすればよいですか?どの設定を適用する必要がありますか?構成ファイルはどこに置く必要がありますか?


私はもう試した

c.InteractiveShellApp.matplotlib = "inline"
c.InlineBackend.figure_formats = set(['retina'])

~/.jupyter/jupyter_notebook_config.py

しかし、これは効果がありません。

16
orome

私が持っています

c.IPKernelApp.matplotlib = 'inline'
c.InlineBackend.figure_format = 'retina'

私の~/.ipython/profile_default/ipython_kernel_config.py

7
Shahar