Matplotlib
砖运行时显示内联Matplotlib数据。
笔记本的例子:Matplotlib
下面的笔记本显示了如何显示Matplotlib在Python的笔记本。
渲染图像分辨率更高
你可以渲染matplotlib图像在Python笔记本分辨率双重标准,为高分辨率屏幕的用户提供更好的视觉体验。笔记本电池下列之一:
视网膜
选择:
%配置InlineBackend。figure_format=“视网膜”从IPython.display进口set_matplotlib_formatsset_matplotlib_formats(“视网膜”)
png2x
选择:
%配置InlineBackend。figure_format=“png2x”从IPython.display进口set_matplotlib_formatsset_matplotlib_formats(“png2x”)
切换回标准分辨率,添加以下笔记本电池:
set_matplotlib_formats(“png”)%配置InlineBackend。figure_format=“png”