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 details)

Uploaded Source

Built Distribution

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

Uploaded Python 3

File details

Details for the file predictable-0.0.2.tar.gz.

File metadata

  • Download URL: predictable-0.0.2.tar.gz
  • Upload date:
  • Size: 15.8 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.9.16

File hashes

Hashes for predictable-0.0.2.tar.gz
Algorithm Hash digest
SHA256 3f33dd4672c4b56b2fb76d528b78508139ee8307a6ab88494d2faced6bad8ada
MD5 b21807c7442491f30cb3a611f0ad53b3
BLAKE2b-256 7b4b6e99bf10f07c0d84236499bb5f11d0f7e220cfcac6d62fc0af37eaa4a6ef

See more details on using hashes here.

File details

Details for the file predictable-0.0.2-py3-none-any.whl.

File metadata

  • Download URL: predictable-0.0.2-py3-none-any.whl
  • Upload date:
  • Size: 14.7 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.9.16

File hashes

Hashes for predictable-0.0.2-py3-none-any.whl
Algorithm Hash digest
SHA256 154d0dbc52769b76054ebae9daa11652bacbbac57ecd62800443d822ef4d562e
MD5 364a900ddd9d3851f23d31decb8d0977
BLAKE2b-256 3a0bd2098a69d61946d060604ac45c8f06ed749e2526e446d6fed518dafe050b

See more details on using hashes here.

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