fivemack: (Default)
Tom Womack ([personal profile] fivemack) wrote2006-05-19 08:59 am
Entry tags:

More interactive version of previous post

http://tom.womack.net/demog/

It's not very interactive (five copies of the table, generated by perl here from data munged by a script here, rather than some miraculous piece of AJAX), but it ought to do.

Comments on demography and on my perl style here; I'm now reasonably comfortable with things like ${$data[$indices[$j-1]]}[$k];

slight improvement in syntax

[identity profile] livemerlyn.livejournal.com 2006-05-19 05:20 pm (UTC)(link)
${$data[$indices[$j-1]]}[$k] is better written as $data[$indices[$j-1]][$k] to make it more left-to-right.