次の方法で共有


Matplotlib

Databricks Runtime では、MatplotLib の図がインラインで表示されます。

ノートブックの例: Matplotlib

Matplotlib の図を Python ノートブックで表示する方法は、次のノートブックでご覧いただけます。

Matplotlib Python ノートブック

ノートブックを入手

より高い解像度で画像をレンダリングする

Python ノートブックで、matplotlib の画像を標準の 2 倍の解像度でレンダリングできます。高解像度スクリーンを使用するユーザーの視覚エクスペリエンスが向上します。 ノートブックのセルで、次のいずれかを設定します。

retina オプション:

%config InlineBackend.figure_format = 'retina'

from IPython.display import set_matplotlib_formats
set_matplotlib_formats('retina')

png2xオプション:

%config InlineBackend.figure_format = 'png2x'

from IPython.display import set_matplotlib_formats
set_matplotlib_formats('png2x')

標準解像度に戻すには、ノートブックのセルに以下を追加します。

set_matplotlib_formats('png')

%config InlineBackend.figure_format = 'png'