Before computing any index, the first step in organising a set of data is to collect them in a frequency table, which counts how many times each value appears.

Definition — Frequency table

Given a sample of nn observations taking values (or classes) v1,,vkv_1,\ldots,v_k:

  • absolute frequency fif_i: number of observations equal to viv_i;
  • relative frequency hi=fi/nh_i=f_i/n (always in [0,1][0,1]);
  • percentage frequency hi100%h_i\cdot 100\%;
  • cumulative frequency Fi=jifjF_i=\sum_{j\le i} f_j.

One always checks: ifi=n\sum_i f_i=n and ihi=1\sum_i h_i=1.

The cumulative frequency is useful for answering questions of the type “how many observations are at most viv_i?”: it is read directly off the last column.

Example — Test marks in a table

On a test taken by 1010 pupils the marks are 4,5,6,6,7,7,7,8,9,104,5,6,6,7,7,7,8,9,10:

markffh=f/10h=f/10FF cumulative
44110,100,1011
55110,100,1022
66220,200,2044
77330,300,3077
88110,100,1088
99110,100,1099
1010110,100,101010
total10101,001,00

Topics: Probabilita
Concepts: Frequenza cumulata · Frequenza relativa · Tabella di frequenza
Methods: Tabella frequenza
Skills: Calcolare · Interpretare grafico