We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
See analogous function in pandas https://pandas.pydata.org/docs/reference/api/pandas.Series.cummax.html
Requires skipna parameter. returns new Stairs instance with same initial_value and same value of "closed" property.
Functionality should be straightforward by applying pandas.Series.cummax to Stairs._data["value"] and using Stairs._new
The result will be a monotonically increasing step function
https://www.staircase.dev/en/latest/development/guide/internals.html
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Describe the solution you'd like
See analogous function in pandas https://pandas.pydata.org/docs/reference/api/pandas.Series.cummax.html
Requires skipna parameter. returns new Stairs instance with same initial_value and same value of "closed" property.
Functionality should be straightforward by applying pandas.Series.cummax to Stairs._data["value"] and using Stairs._new
The result will be a monotonically increasing step function
Additional context
https://www.staircase.dev/en/latest/development/guide/internals.html
The text was updated successfully, but these errors were encountered: