Source: Bureau of Labor Statistics, Census Bureau
This choropleth shows unemployment rates as of September, 2016 with a quantize scale. A threshold scale is a useful alternative for coloring arbitrary ranges. I employed a mix of command-line tools to transform the fixed-width text file into a CSV, including dsv2dsv:
cat <(echo "id,rate") \
<(tail -n +7 laucntycur14.txt \
| cut -b 21-22,28-30,129-133 \
| tr -s ' ' \
| dsv2dsv -r ' ' -w ',') \
> unemployment.csv
Your code not working. Check it once.
I am getting error "counties" undefined.