Matplotlib

Databricks Runtime 以内联方式显示 Matplotlib 图表。

笔记本示例:Matplotlib

以下笔记本演示如何在 Python 笔记本中显示 Matplotlib 图形。

Matplotlib Python 笔记本

获取笔记本

在更高的分辨率下呈现图像

可以在 Python 笔记本中以标准分辨率的两倍呈现 matplotlib 图像,为高分辨率屏幕用户提供更好的可视化效果体验。 在笔记本单元中设置以下项之一:

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'