sysplot.apply_config#
- apply_config(config=None, **overrides)[source]#
Apply sysplot styling globally via seaborn and Matplotlib rcParams.
You can either provide a full
SysplotConfiginstance or pass keyword overrides for individual fields.Seaborn theme settings are applied first, then Matplotlib rcParams are updated so explicit sysplot values take precedence.
- Parameters:
config (
SysplotConfig|None) – Full configuration object to activate. If provided, overrides are ignored.**overrides – Field-level updates for
SysplotConfigwhenconfigis not provided. ref SysplotConfig keys
Note
With seaborn
whitegrid, patch edge color may default to white. For visible annotation arrows, pass explicit arrow color, for example:arrowprops=dict(arrowstyle="-|>", color="black").Examples using
sysplot.apply_config#