IPython Notebook で Matplotlib プロットをインラインで表示する方法
質問:
IPython を使用する場合特定の Python および IPython バージョンを使用する macOS 上のノートブックでは、matplotlib グラフィックスがインラインで表示されません。 %matplotlib inline、%pylab inline、ipython コマンド ライン引数などのコマンドでは問題は解決されません。代わりに数値が表示されます。
回答:
インライン プロットを有効にするには、次の手順に従います。
import matplotlib import numpy as np import matplotlib.pyplot as plt
あるいは、構成ファイルで次の構成オプションを設定して、常に IPython を開始することもできます。デフォルトでインライン モードのカーネル:
c.IPKernelApp.matplotlib = <CaselessStrEnum> Default: None Choices: ['auto', 'gtk', 'gtk3', 'inline', 'nbagg', 'notebook', 'osx', 'qt', 'qt4', 'qt5', 'tk', 'wx'] Configure matplotlib for interactive use with the default matplotlib backend.
以上がIPython ノートブックで Matplotlib プロットをインラインで表示できないのはなぜですか?の詳細内容です。詳細については、PHP 中国語 Web サイトの他の関連記事を参照してください。