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”