Click here to see the SAS code.
Click here to see the example.

---------------------------------------------------------------

I found an interesting map & table of data showing the number
of pizza stores per capita, in each state ...

http://pmq.com/digital/201009/56.html

But the numbers in the table didn't sound right - the top state
had 3.40 pizza stores per '10M' (10 Mega, or 10 Million ?) people.
At the very least, it's ambiguous and could be misleading.

I entered the data into a SAS data set, and did a little experimenting,
and found that in order to get the numbers in the table, I had to 
calculate the 'per 10,000 people' ... ie, 10K rather than 10M.

per_capita_10k=pizza_stores/(population/10000);

Here's a screen-capture of the incorrect table & map in the mazagine:



Back to Samples Index