About 876,000 results
Open links in new tab
  1. python - How to remove frame from a figure - Stack Overflow

    The easiest way to get rid of the ugly frame in newer versions of matplotlib: import matplotlib.pyplot as plt plt.box(False) If you really must always use the object-oriented …

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

    Dec 11, 2020 · 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 …

  3. matplotlib.pyplot.boxMatplotlib 3.10.3 documentation

    matplotlib.pyplot.box # matplotlib.pyplot.box(on=None) [source] # Turn the Axes box on or off on the current Axes. Parameters: onbool or None The new Axes box state. If None, toggle the state.

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

    Apr 9, 2024 · The easiest way to do so is by turning off the frames in the Matplotlib settings with the axes.spines arguments. You can use the following syntax to remove the entire frame from …

  5. matplotlib之pyplot模块——显示/关闭子图边框(轴脊)(box ())

    May 10, 2021 · box() 函数的功能为关闭或显示当前子图的所有边框。 边框也被称为 box 、 frame 或 spines,它由上下左右四条轴脊(spine)构成。 box() 函数的签名为 …

  6. Matplotlib - Remove the frame without altering the ticks and the …

    To remove the rectangular frame of a matplotlib plot, you can use the respective axes object’s set_frame_on() function and pass False as an argument. This will remove the rectangular …

  7. How to Remove Matplotlib Figure Frame Without Losing Axes

    Mar 6, 2024 · The challenge is to eliminate the box-like frame or border around the plot without affecting the visibility of the tick labels that are vital for data comprehension.

  8. Solved: How to Remove the Frame from a Figure in Matplotlib

    Dec 5, 2024 · To remove the frame from a figure while ensuring a transparent background when saving, you can adjust the properties of both the figure and the axes. Here’s how you can …

  9. matplotlib.pyplot.boxplotMatplotlib 3.10.3 documentation

    matplotlib.pyplot.boxplot(x, *, notch=None, sym=None, vert=None, orientation='vertical', whis=None, positions=None, widths=None, patch_artist=None, bootstrap=None, …

  10. How to Remove the Frame from a Matplotlib Figure in Python

    Sep 26, 2024 · One of the simplest ways to remove the frame from a Matplotlib figure in Python is by using the plt.axis ('off') command. This method turns off all axis lines, ticks, and labels, …

  11. Some results have been removed
Refresh