Skip to content

Commit

Permalink
fixed period_lim in summary_plot docstring
Browse files Browse the repository at this point in the history
  • Loading branch information
jordanplanders committed May 28, 2024
1 parent acba1b6 commit 5671bf0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pyleoclim/core/series.py
Original file line number Diff line number Diff line change
Expand Up @@ -1822,7 +1822,7 @@ def summary_plot(self, psd, scalogram, figsize=[8, 10], title=None,
psd = series.spectral(freq = 'welch').signif_test(number=20)
scalogram = series.wavelet(freq_method = 'welch')
fig, ax = series.summary_plot(psd = psd,scalogram = scalogram, period_lim = [5,0], ts_plot_kwargs = {'color':'Purple','linewidth':.5}, psd_plot_kwargs = {'color':'Purple','linewidth':1.5})
fig, ax = series.summary_plot(psd = psd,scalogram = scalogram, period_lim = [0,5], ts_plot_kwargs = {'color':'Purple','linewidth':.5}, psd_plot_kwargs = {'color':'Purple','linewidth':1.5})
'''

Expand Down

0 comments on commit 5671bf0

Please sign in to comment.