-
Notifications
You must be signed in to change notification settings - Fork 132
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Implement periodic behaviour into plumbing.sequence
#960
Closed
Conversation
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
If periodc_values and higest_index are passed a periodic sequence is emulated. This can be used for the multi-period investment if parameters change per period.
The periodic behaviour is triggered if an immutable iterable is passed.
As pd.series are frequently passed and interpretated as inmutable iterables, this was a bad choice. Passing a dictionary to a sequence is uncommon and therefore a better choice.
This was referenced Jul 24, 2023
FelixMau
reviewed
Jul 31, 2023
FelixMau
reviewed
Jul 31, 2023
FelixMau
reviewed
Jul 31, 2023
3 tasks
We decided to solve this in |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
close #959
A periodically changing
sequence
is handy for the multi-period investment, when the parameters should change per period.For this I have adapted
plumbing.sequence
andplumbing._sequence
. An additional distinction must be made for this behavior.Apparently, the approach with the distinction by variability of the passed iterables in
sequence
does not work, because pandas.series are interpreted as immutable sequence.I therefore decided to specify periodic behavior only when a dictionary is passed. The explicit keys
len
andvalues
also make it more clearI would appreciate your opinion on this @p-snft or @uvchik if this could break anything