tab := RTTabTable new input: (ZnEasy get: 'http://bit.ly/CensusGov') contents usingDelimiter: $,. tab removeFirstRow. tab convertColumnsAsInteger: #('POPESTIMATE2013' 'POPEST18PLUS2013'). b := RTDoubleBarBuilder new. b pointName: [ :row | row at: (tab indexOfName: 'NAME') ]. "Remove the first line, the sum" b points: tab values allButFirst. b bottomValue: [ :row | ((row at: (tab indexOfName: 'POPESTIMATE2013')) / 1000) asInteger ] titled: 'Pop estimate (x 1000)'. b topValue: [ :row | ((row at: (tab indexOfName: 'POPEST18PLUS2013')) / 1000) asInteger] titled: 'Pop +18 estimate (x 1000)'. b