@@ -33,6 +33,8 @@ def plot_fg(fg, save_fig=False, file_name=None, file_path=None, **plot_kwargs):
3333 Name to give the saved out file.
3434 file_path : Path or str, optional
3535 Path to directory to save to. If None, saves to current directory.
36+ **plot_kwargs
37+ Additional plot related keyword arguments, with styling options managed by ``style_plot``.
3638
3739 Raises
3840 ------
@@ -76,7 +78,7 @@ def plot_fg_ap(fg, ax=None, **plot_kwargs):
7678 ax : matplotlib.Axes, optional
7779 Figure axes upon which to plot.
7880 **plot_kwargs
79- Keyword arguments to pass into the ``style_plot``.
81+ Additional plot related keyword arguments, with styling options managed by ``style_plot``.
8082 """
8183
8284 if fg .aperiodic_mode == 'knee' :
@@ -101,7 +103,7 @@ def plot_fg_gf(fg, ax=None, **plot_kwargs):
101103 ax : matplotlib.Axes, optional
102104 Figure axes upon which to plot.
103105 **plot_kwargs
104- Keyword arguments to pass into the ``style_plot``.
106+ Additional plot related keyword arguments, with styling options managed by ``style_plot``.
105107 """
106108
107109 plot_scatter_2 (fg .get_params ('error' ), 'Error' ,
@@ -121,7 +123,7 @@ def plot_fg_peak_cens(fg, ax=None, **plot_kwargs):
121123 ax : matplotlib.Axes, optional
122124 Figure axes upon which to plot.
123125 **plot_kwargs
124- Keyword arguments to pass into the ``style_plot``.
126+ Additional plot related keyword arguments, with styling options managed by ``style_plot``.
125127 """
126128
127129 plot_hist (fg .get_params ('peak_params' , 0 )[:, 0 ], 'Center Frequency' ,
0 commit comments