Matplotlib
Databricks Runtime은 Matplotlib 수치를 인라인으로 표시합니다.
Notebook 예제: Matplotlib
다음 Notebook에서는 Python Notebook에서 Matplotlib 그림을 표시하는 방법을 보여 줍니다.
Matplotlib Python Notebook
더 높은 해상도로 이미지 렌더링
Python Notebook의 matplotlib 이미지를 표준 해상도의 두 배로 렌더링하여 고해상도 화면 사용자에게 더 나은 시각화 환경을 제공할 수 있습니다. Notebook 셀에서 다음 중 하나를 설정합니다.
retina
옵션:
%config InlineBackend.figure_format = 'retina'
from IPython.display import set_matplotlib_formats
set_matplotlib_formats('retina')
png2x
옵션:
%config InlineBackend.figure_format = 'png2x'
from IPython.display import set_matplotlib_formats
set_matplotlib_formats('png2x')
표준 해상도로 다시 전환하려면 Notebook 셀에 다음을 추가합니다.
set_matplotlib_formats('png')
%config InlineBackend.figure_format = 'png'