User Portlet User Portlet

Discussions
I'm creating a list of bigrams from a document like this: bigrams = WordCounts[Document, 2] This gives me an association with the number of times a bigram appears. What I need to be able to do is lookup a key, The data looks like this: ...
I started with a list that looks like data={Industry\_String,{ XCoord\_,YCoord\_Real}} So when I did a GroupBy for each industry it looks like: byIndust = GroupBy[data, First, Point[Map[GeoPosition, #[[All, 2]]]] &]; This groups by each...
byIndustry = GroupBy[coords, First, Point[Map[GeoPosition, #[[All, 2]]]] &]; I can now break each industry down like this and map it: Graphics[{Gray,State,Red,byIndustry[[1]]}] Graphics[{Gray,State,Red,byIndustry[[2]]}] So now I need to...