一時的な設定
2通りの方法がある。
設定方法1の方が簡単だけど、IPython 2.0のリリース時点ですでにDeprecated。
notebook
# 設定方法1 (Deprecated)
%config InlineBackend.figure_format = 'retina'
# 設定方法2
%config InlineBackend.figure_formats = {'png', 'retina'}
設定ファイル
~/.ipython/profile_default/ipython_kernel_config.pyに下の1行を書いておく。
ipython_kernel_config.py
c.InlineBackend.figure_formats = {'png', 'retina'}