-
Notifications
You must be signed in to change notification settings - Fork 10
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Mortality multiples? #59
Comments
Yes, making multiplicative or additive adjustments is common, though it remains an unresolved issue (#27). It's very common to have that multiple vary by characteristics of the life under consideration (e.g. vary by underwriting risk class, size of life insurance policy, etc.) Because those characteristics are tied to objects/structs that I"m intending to build downstream packages for, e.g.:
It's often by those Lives/Policies/etc that a mortality assumption varies so I haven't settled on what's the best place to put that code. It is probably worth putting some sort of basic adjuster function capability in this package though
It is less than optimal :). My ultimate goal is to make working with real mortality tables easier and more functional (in the CS sense). There's a lot of practical issues with working with mortality tables and it's common to see simple but not-quite-theoretically justified modifications to base rates. I could expound here but let me try and just solve your immediate problem... One of the design intentions of # this multiplies the rates by 130% and caps them at 1.0
survivorship(min.(m .* 1.3,1.0) ,0,1) |
I'm not totally sure I follow what your specific broader goal is though... if you want you can hit me up on the #actuary channel on the Julia slack or DM me there and we can talk further. I'm going to mark this one closed in lieu of #27, I offered a scaling/capping solution, and we can continue discussion not related to the package functionality elsewhere. |
Let me start off by saying really nice package, I'm not an actuary but this is really easy to work with!
Are there any thoughts as to the implementation of mortality multiples in the package?
A bit of background: I've got a set of insured lifes with current age and a given life expectancy. This life expectancy is lower than what would be implied by any table (which I do by finding the first
survivorship
< 0.5).Googling around a bit it appears that people are actually just multiplying mortality by some constant and capping things at 1.0, which seems a little less than optimal?
Not sure whether this kind of functionality would be a good fit for this package, but thought I'd throw it out there.
As a side note:
One thing I've been doing (not sure how great an idea this is though) is to basically find the age at which life expectancy equals the given life expectancy, and then using the survival probabilities from that age onwards, so basically:
The text was updated successfully, but these errors were encountered: