About 1,960,000 results
Open links in new tab
  1. matplotlib.axesMatplotlib 3.10.8 documentation

    matplotlib.axes # The Axes class represents one (sub-)plot in a figure. It contains the plotted data, axis ticks, labels, title, legend, etc. Its methods are the main interface for manipulating the plot. Table of …

  2. Hide Axis, Borders and White Spaces in Matplotlib

    Jul 23, 2025 · Matplotlib is a powerful library in Python for data visualization. By default, when we create a plot, it includes axes, labels and borders. However, for creative or minimalistic visualizations, we …

  3. matplotlib.spines — Matplotlib 3.10.8 documentation

    matplotlib.spines # class matplotlib.spines.Spine(axes, spine_type, path, **kwargs) [source] # Bases: Patch An axis spine -- the line noting the data area boundaries. Spines are the lines connecting the …

  4. Matplotlib.axes.Axes.remove() in Python - GeeksforGeeks

    Jul 12, 2025 · Matplotlib is a library in Python and it is numerical - mathematical extension for NumPy library. The Axes Class contains most of the figure elements: Axis, Tick, Line2D, Text, Polygon, etc., …

  5. python - Turn off axes in subplots - Stack Overflow

    You can turn the Axes off by following the advice in Veedrac's comment (linking to here) with one small modification. Rather than using plt.axis('off'), use ax.axis('off') where ax is a matplotlib.axes object. …

  6. How to Turn Off the Axes for Subplots in Matplotlib - Delft Stack

    Feb 2, 2024 · Output: matplotlib.pyplot.axis() If a figure has a single plot in it, we can turn off the axes for subplots by passing off as an argument to the matplotlib.pyplot.axis() method. However, if the figure …

  7. How to Hide Axes in Matplotlib (With Examples) - Statology

    Jul 20, 2021 · This tutorial explains how to hide the axes in Matplotlib, including several examples.

  8. How to remove the frame from a Matplotlib figure in Python?

    Jul 23, 2025 · A frame in the Matplotlib figure is an object inside which given data is represented using independent Axes. These axes represent left, bottom, right and top which can be visualized by …

  9. How to Remove Frames from Figures in Matplotlib - Statology

    Apr 9, 2024 · However, sometimes you may want to remove the frame from a plot for a variety of reasons. The easiest way to do so is by turning off the frames in the Matplotlib settings with the …

  10. How to remove axis in Matplotlib - The Python Graph Gallery

    The aim of this post is to show you how to remove certain axis from a vizualisation that is made up of multiple subplots. To do so, we build a pairplot or correlogram from scratch and show how to remove …