Hello,
In the help file example we are told that,
<quote>
sum(DATA1_A);
If DATA1_A contains 4 values (1, 2, 3, 4), this script returns the range (1, 3, 6, 10) where the second value in the returned range (3) is the sum of the first two values in DATA1_A, etc.
</quote>
While the following object properties: sum.mean, sum.total, sum.min, sum.max, sum.sd, sum.n. all work great. I am trying to access the entire returned range of the sum(dataset) function (ie. (1,3,6,10) from the above example). Is there a way to output this range into a new column? |