Data Modification with Multiple Labels #99
-
Hello everyone! I am new to crappy and I am trying to learn more about on-the-fly data modification capabilities. It looks like modifiers are the best way to do real time calculations with single data labels. What would be the best way to do on-the-fly calculations with multiple labels (like taking the average or mean of several labels at every time point)? Any insight into this would be greatly appreciated. Thanks. |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
Hi ! It all depends if the labels come from a same Block, or from different ones.
|
Beta Was this translation helpful? Give feedback.
Hi !
It all depends if the labels come from a same Block, or from different ones.
If they come from a same Block, it is possible to perform any operation on all the labels at once. Basic example:
If they come from different Blocks, things get much trickier and there is no universal answer. What's for sure is that a
Modifier
alone cannot do the job, aBlock
needs to be used. In the general case, the labels will not be generated in a synchronized way by the several Blocks, so it's impossible to define operations to compute at every…