Table of Contents

About

A frequency distribution is a distribution of the frequency of each element

  • ie the count of each element in a set
  • or the count of each element in a period

Structure

Mathematics

multiset

Relational table (Sql)

select element, count(1)
from 
set
group by element;

Visualization

Data Visualisation - Histogram (Frequency distribution)