Answer by
kc14 (18)
Given a list of numbers, the "cumulative frequency up to x" is how many numbers there are that are at most x. For example, if your original list was 2,5,0,3,7,9,4,3,2,2, the "cumulative frequency of 2" would be 4 (there are 4 numbers which are at most 2), and the "cumulative frequency of 5" would be 8.