nalimilan / FreqTables.jl

Frequency tables in Julia
Other
89 stars 19 forks source link

option for cumulative frequency? #68

Open mcreel opened 1 year ago

mcreel commented 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.

nalimilan commented 1 year ago

Why not just use cumsum(t) directly? That seems to work.