Skip to main content

A framework for actuarial modelling.

Project description

Predictable

Hatch project Ruff PyPI License: MIT pytest build Documentation Status

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.

  1. Clone the project:

    git clone https://github.com/RatulMaharaj/predictable.git
    cd predictable
    
  2. Install hatch

    pipx install hatch
    
  3. 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

MIT

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

predictable-0.0.2.tar.gz (15.8 kB view hashes)

Uploaded Source

Built Distribution

predictable-0.0.2-py3-none-any.whl (14.7 kB view hashes)

Uploaded Python 3

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page