Created
August 24, 2023 12:13
-
-
Save acturtle/abfbb657f6eeaad6af0a7d9abc813dd1 to your computer and use it in GitHub Desktop.
actuaries_digital_10
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
main = ModelPointSet(data=pd.DataFrame({ | |
"id": [1, 2, 3], | |
"sum_assured": [100_000, 50_000, 200_000], | |
"remaining_term": [36, 24, 60], | |
})) | |
fund = ModelPointSet(data=pd.DataFrame({ | |
"id": [1, 1, 3], | |
"fund_code": ["AX", "BP", "FY"], | |
"value": [10_000, 5_000, 12_000] | |
})) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment