Beefy Boxes and Bandwidth Generously Provided by pair Networks
more useful options
 
PerlMonks  

Assessing the cost of losing good developers

by lin0 (Curate)
on Jun 28, 2007 at 22:08 UTC ( [id://623993]=perlmeditation: print w/replies, xml ) Need Help??

Help for this page

Select Code to Download


  1. or download this
    $cost_associated_with_lost = 
      ($cost_differential + 
    ...
       $cost_of_loss_of_production_or_loss_of_customers +
       $monetary_value_of_loss_of_morale_of_remaining_employees)
       * (1 + $turnover_rate_of_newcomer_to_organization)
    
  2. or download this
    foreach (1..$total_number_of_years) {
        $cost_differential += ( $annual_remuneration_of_new_employee - $an
    +nual_remuneration_of_person_leaving ) /  (1 + $interest_rate_paid_by_
    +employer / 100)**$_
    }
    
  3. or download this
    $total_number_of_years = 10;
    $interest_rate_paid_by_employer = 10;
    ...
    $cost_of_loss_of_production_or_loss_of_customers =  55440;
    $monetary_value_of_loss_of_morale_of_remaining_employees = 3000;
    $turnover_rate_of_newcomer_to_organization = 0.1;
    
  4. or download this
    #!/usr/bin/perl
    use warnings;
    ...
    
    __DATA__
    10 10 64800 60380 3150 10000 48600 1000 55440 3000 0.1
    

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: perlmeditation [id://623993]
Approved by BrowserUk
Front-paged by Old_Gray_Bear
help
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others exploiting the Monastery: (6)
As of 2024-04-18 17:43 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found