rcParams
rcParams is a central configuration mechanism used by the Matplotlib plotting library. It is a mutable, dictionary-like object that stores runtime configuration parameters (RCP) which determine the default appearance and behavior of figures, axes, text, and other plot elements. The object is accessible through the Matplotlib API as matplotlib.rcParams or, in many cases, via matplotlib.pyplot.rcParams. Changes to rcParams affect subsequent plots in the running session unless overridden locally.
Users can read values from rcParams and modify them to customize style. Updates can be applied by
rcParams is organized into groups that reflect different aspects of a plot, such as figure, axes, lines,
Configuration is also supported through matplotlibrc files, which can specify default rcParams at a global, user,