@@ -873,15 +873,15 @@ def rc_params_from_file(fname, fail_on_error=False, use_default_template=True):
873873
874874def rc (group , ** kwargs ):
875875 """
876- Set the current rc params . *group* is the grouping for the rc, e.g.,
876+ Set the current `.rcParams` . *group* is the grouping for the rc, e.g.,
877877 for ``lines.linewidth`` the group is ``lines``, for
878878 ``axes.facecolor``, the group is ``axes``, and so on. Group may
879879 also be a list or tuple of group names, e.g., (*xtick*, *ytick*).
880880 *kwargs* is a dictionary attribute name/value pairs, e.g.,::
881881
882882 rc('lines', linewidth=2, color='r')
883883
884- sets the current rc params and is equivalent to::
884+ sets the current `.rcParams` and is equivalent to::
885885
886886 rcParams['lines.linewidth'] = 2
887887 rcParams['lines.color'] = 'r'
@@ -915,7 +915,7 @@ def rc(group, **kwargs):
915915
916916 This enables you to easily switch between several configurations. Use
917917 ``matplotlib.style.use('default')`` or :func:`~matplotlib.rcdefaults` to
918- restore the default rc params after changes.
918+ restore the default `.rcParams` after changes.
919919
920920 Notes
921921 -----
@@ -949,15 +949,16 @@ def rc(group, **kwargs):
949949
950950def rcdefaults ():
951951 """
952- Restore the rc params from Matplotlib's internal default style.
952+ Restore the `.rcParams` from Matplotlib's internal default style.
953953
954- Style-blacklisted rc params (defined in
954+ Style-blacklisted `.rcParams` (defined in
955955 `matplotlib.style.core.STYLE_BLACKLIST`) are not updated.
956956
957957 See Also
958958 --------
959959 rc_file_defaults
960- Restore the rc params from the rc file originally loaded by Matplotlib.
960+ Restore the `.rcParams` from the rc file originally loaded by
961+ Matplotlib.
961962 matplotlib.style.use
962963 Use a specific style file. Call ``style.use('default')`` to restore
963964 the default style.
@@ -973,9 +974,9 @@ def rcdefaults():
973974
974975def rc_file_defaults ():
975976 """
976- Restore the rc params from the original rc file loaded by Matplotlib.
977+ Restore the `.rcParams` from the original rc file loaded by Matplotlib.
977978
978- Style-blacklisted rc params (defined in
979+ Style-blacklisted `.rcParams` (defined in
979980 `matplotlib.style.core.STYLE_BLACKLIST`) are not updated.
980981 """
981982 # Deprecation warnings were already handled when creating rcParamsOrig, no
@@ -988,9 +989,9 @@ def rc_file_defaults():
988989
989990def rc_file (fname , * , use_default_template = True ):
990991 """
991- Update rc params from file.
992+ Update `.rcParams` from file.
992993
993- Style-blacklisted rc params (defined in
994+ Style-blacklisted `.rcParams` (defined in
994995 `matplotlib.style.core.STYLE_BLACKLIST`) are not updated.
995996
996997 Parameters
0 commit comments