Ali Posted November 11, 2019 Share Posted November 11, 2019 Hello, I'm using the formula .remove() and when I try to execute to remove some data based on predefined capsules, it is showing this message. EXCEEDS_MAXIMUM_INTERPOLATION{2}: Message: Samples are spaced by 7d, more than the maximum interpolation(40h). Please help Link to comment Share on other sites More sharing options...
Thorsten Vogt Posted November 11, 2019 Share Posted November 11, 2019 Hi Ali, the message indicates, that your signal interpolates values only for an interval of 40h. In this case the gap between two samples is 7d, so no interpolation can be made. You can append the function setMaxInterpolation() to interpolate values between these samples. Regards, Thorsten Link to comment Share on other sites More sharing options...
Ali Posted November 11, 2019 Author Share Posted November 11, 2019 I'm not trying to interpolate at all. I don't know why this message is showing. I just want to remove some data based on predefined capsules. Thanks, Ali Link to comment Share on other sites More sharing options...
Thorsten Vogt Posted November 12, 2019 Share Posted November 12, 2019 (edited) Hi Ali, Seeq tries to interpolate missing values. In the following example I removed the values from the temperature curve, if the value is less than 73°F. I get a curve with the expected gap and Seeq informs with that message that it is not able to interpolate the values: If you do the same with a signal that has a maximum interpolation of greater than the gap, Seeq interpolates the values and does not show the message: If you do not want to interpolate you should use the within() function. Seeq than does not show the message. Regards, Thorsten Edited November 12, 2019 by Thorsten Vogt Link to comment Share on other sites More sharing options...
Allison Buenemann Posted November 12, 2019 Share Posted November 12, 2019 Hi Ali, Both the methods that you and Thorsten describe above will work absolutely fine for what you are hoping to achieve in Seeq. Although the first method that you described produces a warning, Seeq's calculations will still complete (it is only when an error is received that the calculations do not complete). The warning is just there to let you know that you have gaps in your signal, in case this is something that you did not want. In your case, you are explicitly trying to create gaps in this data, so either Thorsten's within() method can be used, or you can simply ignore the warning. Thanks, Allison 1 Link to comment Share on other sites More sharing options...
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now