Matplotlib
Databricks Runtime zeigt Matplotlib-Abbildungen inline an.
Notebook-Beispiel: Matplotlib
Das folgende Notebook zeigt, wie Matplotlib-Abbildungen in Python-Notebooks angezeigt werden.
Matplotlib-Python-Notebook
Rendern von Bildern mit höherer Auflösung
Sie können Matplotlib-Bilder in Python-Notebooks mit der doppelten Standardauflösung rendern, um Benutzern von Bildschirmen mit hoher Auflösung eine bessere Visualisierung zu ermöglichen. Legen Sie eine der folgenden Optionen in einer Notebook-Zelle fest:
retina
-Option:
%config InlineBackend.figure_format = 'retina'
from IPython.display import set_matplotlib_formats
set_matplotlib_formats('retina')
png2x
-Option:
%config InlineBackend.figure_format = 'png2x'
from IPython.display import set_matplotlib_formats
set_matplotlib_formats('png2x')
Fügen Sie einer Notebook-Zelle Folgendes hinzu, um zur Standardauflösung zurückzukehren:
set_matplotlib_formats('png')
%config InlineBackend.figure_format = 'png'