Details
Description
The class math3.stat.Frequency uses a TreeMap which does not allow
for the use of null keys (public void addValue(Comparable<?> v) with v = null). I am analyzing data (matrix) whose values may
contain nulls. I need to get the counts for elements in a given column.
This includes knowing how many are null. This information will be used
for data cleaning/pre-processing.
A simple change would be substituting TreeMap with java.util.HashMap<K,V>.