Skip to content

Instantly share code, notes, and snippets.

@acturtle
Created August 24, 2023 12:13
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save acturtle/abfbb657f6eeaad6af0a7d9abc813dd1 to your computer and use it in GitHub Desktop.
Save acturtle/abfbb657f6eeaad6af0a7d9abc813dd1 to your computer and use it in GitHub Desktop.
actuaries_digital_10
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