Hi,
I have a dataset called A:
Count | Percent
0 | 0.05
2 | 0.15
5 | 0.20
... .....
How can I obtain a dataset called B, where Cumulative Percentage for Count = 5 is the Percentage for Count <= 5:
(p(Count = 0) + p(Count = 2) + p(Count = 5) = 0.05 + 0.15 + 0.2 = 0.4)
Count | Perenct | Cumulative Percent
0 | 0.05 | 0.05
2 | 0.15 | 0.20
5 | 0.20 | 0.40
... ... ...
Thanks!