About 650,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 …

    Missing:

    • Edge

    Must include:

  2. 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, …

    Missing:

    • Edge

    Must include:

  3. 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.

    Missing:

    • Edge

    Must include:

  4. Matplotlib: how to have a transparent box plot face while a non ...

    Aug 23, 2015 · You can try and set facecolor = '#1b9e77' for boxprops, this can be a transparent color or solid one. If you just want to make the boxplot transparent, you can set the fill to None: …

    Missing:

    • Edge

    Must include:

  5. Artist customization in box plotsMatplotlib 3.10.3 …

    This example demonstrates how to use the various keyword arguments to fully customize box plots. The first figure demonstrates how to remove and add individual components (note that …

    Missing:

    • Edge

    Must include:

  6. python - Borderless matplotlib plots - Stack Overflow

    import matplotlib.pyplot as plt plt.tick_params (left=False, labelleft=False) #remove ticks plt.box (False) #remove box

    Missing:

    • Edge

    Must include:

  7. Boxplots — Matplotlib 3.10.3 documentation

    The following examples show off how to visualize boxplots with Matplotlib. There are many options to control their appearance and the statistics that they use to summarize the data.

    Missing:

    • Edge

    Must include:

  8. How do I set matplotlib plot to "no fill"? - Stack Overflow

    Dec 16, 2017 · I have: figZ, axZ = plt.subplots(1, figsize=(11,8.5)) Sfig = X.plot(ax=axZ, color='white', edgecolor='black', lw=0.7) Y.plot(ax=axZ, color='white', edgecolor='black', …

    Missing:

    • Edge

    Must include:

  9. How to avoid the matplotlib bounding box - Stack Overflow

    Jul 10, 2018 · You can try to plot a thicker line, so it is not entirely hidden by the axes: plt.plot (x, y, linewidth=2)

    Missing:

    • Edge

    Must include:

  10. Drawing box-plot without tails only max and min on the edges …

    Oct 26, 2021 · Try whis=0 in the call to seaborn box plot. It is passed to matplotlib matplotlib.org/stable/api/_as_gen/… You can create a barplot, using the minimums as 'bottom' …

Refresh