Skip to content
Snippets Groups Projects
Commit 5f5e198f authored by Alán Muñoz's avatar Alán Muñoz
Browse files

feat(process): add interpolate

parent fded0b0d
No related branches found
No related tags found
No related merge requests found
#!/usr/bin/env jupyter
import pandas as pd
from agora.abc import ParametersABC
from postprocessor.core.abc import PostProcessABC
class interpolateParameters(ParametersABC):
"""
Parameters
"""
_defaults = {"limit_area": "inside"}
class interpolate(PostProcessABC):
"""
Interpolate process.
"""
def __init__(self, parameters: interpolateParameters):
super().__init__(parameters)
def run(self, signal: pd.DataFrame):
return signal.interpolate(limit_area="inside", axis=1)
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment