colors.put(6, new Color(136,90,68));//Hawaiian
colors.put(7, new Color(136,90,68));//Other
colors.put(8, new Color(136,90,68));//Mixed
Transfer<CategoricalCounts<Object>, CategoricalCounts<Color>> rekey = new Rekey<Object, Color>(new CategoricalCounts<Color>(Util.COLOR_SORTER), colors, Color.BLACK);
Transfer<CategoricalCounts<Color>, Color> stratAlpha = new HighDefAlpha(Color.white, .1, true);
return Seq.start(rekey)
.then(new General.Spread<>(
new General.Spread.UnitRectangle<CategoricalCounts<Color>>(1),
new Categories.MergeCategories<Color>()))
.then(stratAlpha);