Skip to content

Commit

Permalink
Merge pull request #50 from CIAT-DAPA/develop
Browse files Browse the repository at this point in the history
modify seasons
  • Loading branch information
santiago123x authored Aug 30, 2023
2 parents ebb8c94 + 6373e5a commit 7721872
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/aclimate_resampling/resampling.py
Original file line number Diff line number Diff line change
Expand Up @@ -163,7 +163,7 @@ def preprocessing(self,prob_root, ids):
months_numbers = list(range(1,13))

# Create a DataFrame representing periods of two consecutive months (with its numbers)
period = pd.DataFrame( [months_numbers[i:i+2] for i in range(0, len(months_numbers),2)])
period = pd.DataFrame( [months_numbers[i:i+2] for i in range(0, len(months_numbers)-1)])
period.columns = ['Start', 'End']


Expand Down

0 comments on commit 7721872

Please sign in to comment.