Skip to content

Commit

Permalink
rerun notebooks
Browse files Browse the repository at this point in the history
  • Loading branch information
martinvonk committed Oct 2, 2023
1 parent 9050a43 commit d085fc3
Show file tree
Hide file tree
Showing 5 changed files with 66 additions and 75 deletions.
64 changes: 32 additions & 32 deletions doc/examples/example01_indices.ipynb

Large diffs are not rendered by default.

8 changes: 4 additions & 4 deletions doc/examples/example02_distributions.ipynb

Large diffs are not rendered by default.

43 changes: 17 additions & 26 deletions doc/examples/example03_drought_NL.ipynb

Large diffs are not rendered by default.

24 changes: 12 additions & 12 deletions doc/examples/example04_package_comparison.ipynb

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion src/spei/si.py
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ def compute_si_ppf(
series = validate_series(series)
if index is None:
index = validate_index(series.index)
series = series.set_index(index, inplace=False)
series = series.reindex(index, copy=True)

inf_freq = infer_frequency(index)
dfval = group_yearly_df(series=series)
Expand Down

0 comments on commit d085fc3

Please sign in to comment.