Examples ======== matplotly supports a wide range of matplotlib plot types. Each demo notebook in the repository shows how to use the editor with a specific plot type. Supported plot types -------------------- - **Line plots** — ``ax.plot()`` - **Scatter plots** — ``ax.scatter()`` - **Bar charts** — ``ax.bar()`` / ``ax.barh()`` - **Histograms** — ``ax.hist()`` - **Box plots** — ``ax.boxplot()`` - **Violin plots** — ``ax.violinplot()`` - **Error bars** — ``ax.errorbar()`` - **Heatmaps** — ``ax.imshow()`` / ``ax.pcolormesh()`` - **Fill regions** — ``ax.fill_between()`` / ``ax.fill_betweenx()`` - **Marginal plots** — joint + marginal distributions See the ``demo_*.ipynb`` notebooks in the repository root for interactive walkthroughs of each type.