About 29,100 results
Open links in new tab
  1. Interactive figures — Matplotlib 3.10.9 documentation

    The pan/zoom and mouse-location tools built into the Matplotlib GUI windows are often sufficient, but you can also use the event system to build customized data exploration tools.

  2. python - Using %matplotlib notebook after %matplotlib inline in …

    In Jupyter notebook, you have to enter matplotlib notebook in the same line as the one you want to run. Even if you enter "inline" then followed by "notebook", it still won't work.

  3. %matplotlib Notebook - Delft Stack

    Oct 10, 2023 · The %matplotlib notebook magic command creates interactive plots in a Jupyter notebook. Type %matplotlib notebook at the beginning of a Jupyter notebook cell to use this magic …

  4. Using Matplotlib with Jupyter Notebook - GeeksforGeeks

    Jul 12, 2025 · Matplotlib is a popular Python library for creating 2D plots. It is easy to use with data in arrays. To start, you just need to import the necessary tools, prepare your data and use the plot () …

  5. 04-01 Interactive Plotting with Matplotlib.ipynb - Colab

    One can use Jupyter notebook as a browser-based interactive data analysis tool to combine narrative, code, graphics, and much more into a single executable document. Plotting interactively within...

  6. Enable interactive plots and other plot modes in Jupyter notebooks

    Nov 4, 2022 · Learn how to enable interactive, static and stand-alone window plots in Jupyter notebooks with the magic command %matplotlib.

  7. Matplotlib - Jupyter Notebook - Online Tutorials Library

    Matplotlib in Jupyter Notebook provides an interactive environment for creating visualizations right alongside our code. Let's go through the steps to start using Matplotlib in a Jupyter Notebook.

  8. Using Matplotlib with Jupyter Notebook – TheLinuxCode

    In this comprehensive guide, you‘ll discover how to leverage Matplotlib within Jupyter Notebook to create everything from simple plots to complex, interactive visualizations that bring your data to life.

  9. Quick start guide — Matplotlib 3.10.9 documentation

    Matplotlib's documentation and examples use both the OO and the pyplot styles. In general, we suggest using the OO style, particularly for complicated plots, and functions and scripts that are intended to …

  10. python - Purpose of "%matplotlib inline" - Stack Overflow

    Mar 26, 2017 · In Jupyter Notebook versions earlier than 5.0, the %matplotlib inline command ensures that Matplotlib plots are displayed inline within the notebook, directly below the code cell that …