Open mcreel opened 1 year ago
It would be nice to add an option to include cumulative frequencies. I can hack it by taking a table t and doing t.array=cumsum(t.array); display(t) I guess that a keyword would allow for this.
t
t.array=cumsum(t.array); display(t)
Why not just use cumsum(t) directly? That seems to work.
cumsum(t)
It would be nice to add an option to include cumulative frequencies. I can hack it by taking a table
t
and doingt.array=cumsum(t.array); display(t)
I guess that a keyword would allow for this.