MArgarida Posted March 28 Share Posted March 28 i can see this in the scorecard format, but not managing to write it in a formula mode, which i can then use to define a condition.. thank you Link to comment Share on other sites More sharing options...
Administrators Teddy Posted March 28 Administrators Share Posted March 28 MArgarida, If I understand your question correctly it sounds like you are trying to create a metric/scorecard metric with formula. Seeq doesn’t support the creation of metrics with formula. If this is what you are trying to do, I don’t think it will be possible. I would suggest opening a feature request and detailing what you are trying to do. If you are trying to do something else, can you provide a little bit more information on what your goal is. Link to support portal to submit feature request. You can send the feature request to the Analytics Help section. https://seeq.atlassian.net/servicedesk/customer/portal/3 Regards, Teddy Link to comment Share on other sites More sharing options...
MArgarida Posted March 28 Author Share Posted March 28 (edited) i don't think that's what i am trying to do, i'll try to explain better: i have the following capsule and profiles. i would like to define for each capsule, the max value or another statistic. i know that i can select such information in the capsules info window or define "signal from condition" $series.aggregate(maxValue(), $capsules.setMaximumDuration(60h), durationKey(), 0s) and then identify value $a < 54 and $a > 48 and like this define the condition i was looking for, but i would like to write it all in one formula. i think i need to use "tocondition", but how? thanks Edited March 28 by MArgarida Link to comment Share on other sites More sharing options...
Administrators Teddy Posted March 29 Administrators Share Posted March 29 I think this is what you're looking for or at least something very similar. The following formula will find the max value of a signal during each capsule in the condition and then keep the capsules whose Max values fall within the range of 48 and 54. $condition.setProperty('max of signal', $signal, maxValue()) .keep('max of signal', isbetween(48,54)) Regards, Teddy Link to comment Share on other sites More sharing options...
MArgarida Posted March 29 Author Share Posted March 29 thank you, that was it, just needed to define maximum duration of the capsule with "remove longer than" (as suggested by the program and worked) 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