how to get frequency table in python code example
Example: how to create frequency table in python
table = {}
total = 0
for row in dataset:
total += 1
value = row[index]
if values in table:
table[value] += 1
else:
table[value] = 1
table = {}
total = 0
for row in dataset:
total += 1
value = row[index]
if values in table:
table[value] += 1
else:
table[value] = 1