各地域の人数の合計をクロスフィルタを使用して表示しようとしていますが、現在のコードではすべての地域の合計が表示されています。それでは、SQLクエリにcrossfilterで等価です:SELECT COUNT(*)GROUP DMAによるグループ別クロスフィルタ合計
これは
//geography that is being hovered over, getting dma name and removing everything that is after the comma
sel_geog = layer.feature.properties.dma_1;
sel_geog = sel_geog.split(",")[0];
console.log(sel_geog);
//crossfilter to get total number of people of each geography
var dmaDim = voter_data.dimension(function(d) {return d.dma == sel_geog}),
dma_grp = dmaDim.groupAll().reduceCount().value();
console.log(dma_grp);