export interface FrequencySet { map: { [value: string]: number; }; missing?: number; total?: number; weighted: boolean; weights: Array; }