About 54,700 results
Open links in new tab
  1. Customizing Matplotlib with style sheets and rcParams

    Customizing Matplotlib with style sheets and rcParams# Tips for customizing the properties and default styles of Matplotlib. There are three ways to customize Matplotlib: Setting rcParams at …

  2. matplotlib — Matplotlib 3.10.3 documentation

    Restore the rcParams from Matplotlib's internal default style. Style-blacklisted rcParams (defined in matplotlib.style.core.STYLE_BLACKLIST) are not updated.

  3. Customize Rc — Matplotlib 3.10.3 documentation

    I'm not trying to make a good-looking figure here, but just to show some examples of customizing rcParams on the fly.

  4. matplotlib.pyplot.rc — Matplotlib 3.10.3 documentation

    Set the current rcParams. group is the grouping for the rc, e.g., for lines.linewidth the group is lines , for axes.facecolor , the group is axes , and so on. Group may also be a list or tuple of …

  5. Customizing Matplotlib with style sheets and rcParams

    You can also dynamically change the default rc settings in a python script or interactively from the python shell. All of the rc settings are stored in a dictionary-like variable called …

  6. Configure the font family — Matplotlib 3.10.3 documentation

    rcParams ['font.family'] = 'sans-serif' and for the font.family you set a list of font styles to try to find in order: rcParams [ 'font.sans-serif' ] = [ 'Tahoma' , 'DejaVu Sans' , 'Lucida Grande' , 'Verdana' ]

  7. Text rendering with LaTeX — Matplotlib 3.10.3 documentation

    Matplotlib can use LaTeX to render text. This is activated by setting text.usetex: True in your rcParams, or by setting the usetex property to True on individual Text objects.

  8. What's new in Matplotlib 3.10.0 (December 13, 2024)

    matplotlib.ticker.EngFormatter has gained the ability to show an offset text near the axis. Using logic shared with matplotlib.ticker.ScalarFormatter, it is capable of deciding whether the data …

  9. Fonts in Matplotlib — Matplotlib 3.10.3 documentation

    Matplotlib needs fonts to work with its text engine, some of which are shipped alongside the installation. The default font is DejaVu Sans which covers most European writing systems. …

  10. Styling with cycler — Matplotlib 3.10.3 documentation

    Let's set the default prop_cycle using matplotlib.pyplot.rc(). We'll combine a color cycler and a linestyle cycler by adding (+) two cycler 's together. See the bottom of this tutorial for more …