Skip to content

foundational timeseries model Regressor

Peter Lünenschloß requested to merge TTM into develop

Switched to a regression function based on the MomentFM framework. Reconstruction/Regression can be applied on raw, irrgeularly sampled data, containing arbitrary NaN values.

data = pd.read_csv('/resources/data/hydro_data.csv', parse_dates=['Timestamp'], index_col=0, nrows=10000)
qc = saqc.SaQC(data)
qc = qc.fitFMmoment(['sac254_raw'], target=['sac254_ttm'])
qc.plot(['sac254_raw','sac254_ttm'], mode='oneplot')

mfit0 mfit1 mfit2

MomentFM requirements have to be installed as extras (saqc[FM])

Edited by Peter Lünenschloß

Merge request reports