Help for this page

Select Code to Download


  1. or download this
    my @institutions = qw|hospital1 hospital2|;
    my %seen;
    ...
    } else {
        $institution_table{"other"} ++;
    }
    
  2. or download this
    my $cat_age = int ($age/5) - 9;
    my @age_cats = qw|fortyfive_fifty fifty_fiftyfive fiftyfive_sixty|;
    ...
    foreach (keys %institution_table) {
     $institution_table{ $_ }{ $age_cats[$cat_age] }++;
    }