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”