Matplotlib

砖运行时显示内联Matplotlib数据。

笔记本的例子:Matplotlib

下面的笔记本显示了如何显示Matplotlib在Python的笔记本。

Matplotlib Python笔记本

在新标签页打开笔记本

渲染图像分辨率更高

你可以渲染matplotlib图像在Python笔记本分辨率双重标准,为高分辨率屏幕的用户提供更好的视觉体验。笔记本电池下列之一:

视网膜选择:

%配置InlineBackendfigure_format=“视网膜”IPython.display进口set_matplotlib_formatsset_matplotlib_formats(“视网膜”)

png2x选择:

%配置InlineBackendfigure_format=“png2x”IPython.display进口set_matplotlib_formatsset_matplotlib_formats(“png2x”)

切换回标准分辨率,添加以下笔记本电池:

set_matplotlib_formats(“png”)%配置InlineBackendfigure_format=“png”