You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
add functions to outlier.py that label outliers in a timeseries based on deviations from a reference signal. The current functions in outlier.py find outliers using either the time series' marginal distribution (zscore, tukey) or sliding windows of the time series (hampel). I don't know how to define an outlier from the deviation of signal from reference, but perhaps the existing outlier methods apply?
add functions to outlier.py to identify threshold curves in a time series. The geometry is intuitive, but the statistics can seem complicated and out of reach. Maybe there's a version of quantile regression that can be applied here.