Lưu ý
Cần có ủy quyền mới truy nhập được vào trang này. Bạn có thể thử đăng nhập hoặc thay đổi thư mục.
Cần có ủy quyền mới truy nhập được vào trang này. Bạn có thể thử thay đổi thư mục.
Databricks Runtime displays Matplotlib figures inline.
Notebook example: Matplotlib
The following notebook shows how to display Matplotlib figures in Python notebooks.
Matplotlib Python notebook
Render images at higher resolution
You can render matplotlib images in Python notebooks at double the standard resolution, providing users of high-resolution screens with a better visualization experience. Set one of the following in a notebook cell:
retina option:
%config InlineBackend.figure_format = 'retina'
from IPython.display import set_matplotlib_formats
set_matplotlib_formats('retina')
png2xoption:
%config InlineBackend.figure_format = 'png2x'
from IPython.display import set_matplotlib_formats
set_matplotlib_formats('png2x')
To switch back to standard resolution, add the following to a notebook cell:
set_matplotlib_formats('png')
%config InlineBackend.figure_format = 'png'