Skip to content

Commit

Permalink
Freq argument for wavelet-based methods (#580)
Browse files Browse the repository at this point in the history
* Update tsmodel.py

* replaced freq_mehod by freq

in Series.wavelet() and MultipleSeries.wavelet(). Also cleaned up module imports in core classes

* implemented freq in wavelet_coherence()

with CI tests

* implemented CI test for global_coherence() freq passing

* consolidate coherences
  • Loading branch information
CommonClimate authored Jun 18, 2024
1 parent a6d2d66 commit 6b79c6b
Show file tree
Hide file tree
Showing 16 changed files with 1,344 additions and 115 deletions.
3 changes: 1 addition & 2 deletions pyleoclim/core/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,7 @@
from .surrogateseries import SurrogateSeries
from .ensembleseries import EnsembleSeries
from .scalograms import Scalogram, MultipleScalogram
from .coherence import Coherence
from .globalcoherence import GlobalCoherence
from .coherences import Coherence, GlobalCoherence
from .corr import Corr
from .correns import CorrEns
from .multivardecomp import MultivariateDecomp
Expand Down
2 changes: 1 addition & 1 deletion pyleoclim/core/coherence.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
from copy import deepcopy

from matplotlib.ticker import ScalarFormatter, FormatStrFormatter
from matplotlib import cm
#from matplotlib import cm
from matplotlib import gridspec

from tqdm import tqdm
Expand Down
Loading

0 comments on commit 6b79c6b

Please sign in to comment.