A framework for actuarial modelling.
Project description
Predictable
What is it?
A framework for actuarial modelling.
Installation
pip install predictable
Quick start example
A model.py
file will be used to house the modelling logic which will be applied to each modelpoint.
# import the library
from predictable import CashFlow, DiscountFactors, Model, StaticCashFlow
# Create new model instance
model = Model()
# Add a premium component
model.add_component(
CashFlow(
input_array=[100], formula=lambda prev: prev * 1.05, label="premium"
)
)
# Add a sum assured component
model.add_component(CashFlow(label="cover", input_array=[1_000_000]))
# Add an expense component
model.add_component(
StaticCashFlow(
input_array=[10, 10, 10, 10, 10],
label="expense",
)
)
# Add discounting component
model.add_component(DiscountFactors(interest_rate=0.05, label="V"))
# Project cashflows over term
# Results return a pandas df object
df = model.project(term=10)
# Perform linear combination style manipulations
# Discounting the components
components = ["premium", "cover", "expense"]
for component in components:
df[f"V_{component}"] = df[component] * df["V"]
# Define reserving relationship
df["Reserve"] = df["V_cover"] + df["V_expense"] - df["V_premium"]
# Results get returned as a pandas dataframe
print(df)
Documentation
This project is documented using sphinx and the full documentation can be found at predictable.readthedocs.io.
Development & Contibutions
The following steps can be followed to set up a development environment.
-
Clone the project:
git clone https://github.com/RatulMaharaj/predictable.git cd predictable
-
Install hatch
pipx install hatch
-
Enter the default environment (this will activate the default virtual environment and install the project in editable mode).
hatch shell default
Testing
This project uses pytest
for testing purposes. The tests can be found in the tests
directory. Tests will run after every commit (locally) and on every push (using github actions) but can also be run manually using:
hatch run test
Linting
This project is linted using ruff
and formatted with black
. The linting and formatting can be run manually using:
hatch run lint
hatch run format
Editing the docs
The documentation for this project can be found in the docs
directory. The documentation is built using sphinx and can be built locally using:
hatch run docs:make
You can then serve the documentation locally using:
hatch run docs:serve
License
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Hashes for predictable-0.0.2-py3-none-any.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 154d0dbc52769b76054ebae9daa11652bacbbac57ecd62800443d822ef4d562e |
|
MD5 | 364a900ddd9d3851f23d31decb8d0977 |
|
BLAKE2b-256 | 3a0bd2098a69d61946d060604ac45c8f06ed749e2526e446d6fed518dafe050b |