Configurator.update¶
- Configurator.update(*args, **kwargs)[source]¶
Update several settings at once.
- Parameters
*args (
stror dict-like, optional) – A dictionary containingrckeys and values. You can also pass a “category” name as the first argument, in which case all settings are prepended with'category.'. For example,rc.update('axes', labelsize=20, titlesize=20)changes therc['axes.labelsize']andrc['axes.titlesize']settings.**kwargs, optional –
rckeys and values passed as keyword arguments. If the name has dots, simply omit them.
See also