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
Having a way to smooth data would be nice to have.
The first iteration should at least use the savgol_filter from scipy: https://docs.scipy.org/doc/scipy/reference/generated/scipy.signal.savgol_filter.html#scipy.signal.savgol_filter
savgol_filter
This could be the signature:
def smooth( arr: list[float] | list[list[float]] | np.ndarray, window_length: int = 7, polyorder:int = 2, delta: float = 1.0, ) -> np.ndarray:
The text was updated successfully, but these errors were encountered:
Here are some more suggestions for methods to start with
Sorry, something went wrong.
excellent! you can implement any additional method you like.
jakobchwastek
Successfully merging a pull request may close this issue.
Description of the problem
Having a way to smooth data would be nice to have.
Description of a solution
The first iteration should at least use the
savgol_filter
from scipy:https://docs.scipy.org/doc/scipy/reference/generated/scipy.signal.savgol_filter.html#scipy.signal.savgol_filter
Minimum acceptance criteria
savgol_filter
Sample Code
This could be the signature:
The text was updated successfully, but these errors were encountered: