Applied
from Plots
Cuts and Clips are
implemented as transforms. If you apply them from plots or from
the context menu, the transform is generated automatically. You
can edit or delete a Cut or Clip, just like any other transform.
In the specifications that follow, startrow and endrow are starting
and ending row numbers; low and high are a range of the variable's
values; dtVal is a date/time constant in the format \mm/dd/yy hh:mm:ss\.
clipabove($self,value)
or clipbelow($self,value)
: For the specified variable, it changes
any value above or below the given value to equal the value. The
output variable must be the same as the input.cutabove($self,value)
or cutbelow($self,value)
: For the specified variable, it cuts
any point above or below the given value. The output variable must
be the same as the input.markcut($self,startrow,endrow[,low,high])
:
The generated version of this transform omits the optional low and
high values and simply cuts within the specified range of rows.
You can edit the transform to further limit the cut to the specified
range of values. The output variable must be the same as the input.timecut($self,dtVal1,dtVal2[,low,high])
:
The generated version of this transform omits the optional low and
high values and simply cuts within the specified range of time.
You can edit the transform to further limit the cut to the specified
range of values. The output variable must be the same as the input.Provide Feedback