About 400 results
Open links in new tab
  1. Matplotlib — Visualization with Python

    Matplotlib is a comprehensive library for creating static, animated, and interactive visualizations in Python. Matplotlib makes easy things easy and hard things possible. Create publication quality …

  2. Pyplot tutorial — Matplotlib 3.10.8 documentation

    Introduction to pyplot # matplotlib.pyplot is a collection of functions that make matplotlib work like MATLAB. Each pyplot function makes some change to a figure: e.g., creates a figure, creates …

  3. Examples — Matplotlib 3.10.8 documentation

    Examples # For an overview of the plotting methods we provide, see Plot types This page contains example plots. Click on any image to see the full image and source code. For longer …

  4. Matplotlib documentation — Matplotlib 3.10.8 documentation

    Cheatsheets Matplotlib 3.10.8 documentation # Matplotlib is a comprehensive library for creating static, animated, and interactive visualizations. Install # pip pip install matplotlib conda conda …

  5. matplotlib.pyplot — Matplotlib 3.10.8 documentation

    The explicit object-oriented API is recommended for complex plots, though pyplot is still usually used to create the figure and often the Axes in the figure. See pyplot.figure, pyplot.subplots, …

  6. matplotlib.pyplot.plot — Matplotlib 3.10.8 documentation

    There's a convenient way for plotting objects with labelled data (i.e. data that can be accessed by index obj['y']). Instead of giving the data in x and y, you can provide the object in the data …

  7. Image tutorial — Matplotlib 3.10.8 documentation

    This tutorial will use Matplotlib's implicit plotting interface, pyplot. This interface maintains global state, and is very useful for quickly and easily experimenting with various plot settings.

  8. Getting started — Matplotlib 3.10.8 documentation

    (Source code, 2x.png, png) If a plot does not show up please check Troubleshooting. Where to go next # Check out Plot types to get an overview of the types of plots you can create with …

  9. Installation — Matplotlib 3.10.8 documentation

    It requires Tk bindings, which are usually provided via the Python standard library's tkinter module. On some OSes, you may need to install a separate package like python3-tk to add …

  10. Plot types — Matplotlib 3.10.8 documentation

    Plot types # Overview of many common plotting commands provided by Matplotlib. See the gallery for more examples and the tutorials page for longer examples.