Skip to content

Commit

Permalink
rename aurora/examples to aurora/tutorials (#194)
Browse files Browse the repository at this point in the history
  • Loading branch information
kkappler committed Aug 7, 2022
1 parent 0c2d620 commit ce6c5e2
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 1 deletion.
5 changes: 5 additions & 0 deletions aurora/pipelines/time_series_helpers.py
Original file line number Diff line number Diff line change
Expand Up @@ -83,6 +83,11 @@ def apply_recoloring(decimation_obj, stft_obj):
if prewhitening_correction[0] == 0.0:
cond = stft_obj.frequency != 0.0
stft_obj = stft_obj.where(cond, complex(0.0))
# elif decimation_obj.prewhitening_type == "ARMA":
# from statsmodels.tsa.arima.model import ARIMA
# AR = 3 # add this to processing config
# MA = 4 # add this to processing config

else:
print(f"{decimation_obj.prewhitening_type} recoloring not yet implemented")
raise NotImplementedError
Expand Down
2 changes: 1 addition & 1 deletion docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -100,7 +100,7 @@
sphinx_gallery_conf = {
# path to your examples scripts
"examples_dirs": [
"../examples",
"../tutorials",
],
"gallery_dirs": [
"examples",
Expand Down
File renamed without changes.
File renamed without changes.

0 comments on commit ce6c5e2

Please sign in to comment.