Bayesian fit of splicing models with applications to insurance loss data
Project description
bayes-splicing Python package for Bayesian inference of splicing distributions
This package implements an efficient Sequential Monte Carlo Sampling (SMC) algorithm. Splicing models, also called composite models, are fitted to the data and compared using Bayesian statistics tools
This package is the result of my paper "Sequential Monte Carlo Sampler to fit and compare insurance loss models". To install simply run pip install bayes-splicing
.
For example, imagine we have a sample of insurance losses and we would like to fit a composite model based on the exponential and Pareto distributions.
import bayes_splicing as bs
import pandas as pd
import numpy as np
# Definition of the exponential-Pareto composite model
f1, f2 = bs.loss_model("Exp", ["lambda"]), bs.loss_model("Pareto-Tail", ["alpha"])
# Type of composite models include "disjoint", "simple" and "continuous"
model_type = "continuous"
f = bs.spliced_loss_model(f1, f2, model_type, thresh_name="gamma")
# We will fit the above model to the famous danish fire insurance data set
# danish = pd.read_csv("data/danish.csv").x
# X = danish.values
parms_true = np.array([1 / 3, 2, 1])
X = f.sample(parms_true, 1000)
# Prior distributions over the model parameters
lambda_prior = bs.prior_model('gamma','lambda', 1, 1)
alpha_prior = bs.prior_model('gamma','alpha',1, 1)
gamma_prior = bs.prior_model('uniform','gamma',min(X), max(X))
prior_spliced_model = bs.independent_priors([lambda_prior,alpha_prior, gamma_prior])
# The smc function deliver the trace, the log marginal likelihood along with some information criteria
popSize = 2000
trace, log_marg, DIC, WAIC = bs.smc(X, f, popSize, prior_spliced_model)
# The posterior distributions
bs.posterior_plots(f, trace)
# The trace plot
bs.trace_plots(f, trace)
# The quantile-quantile plot
f.set_ppf()
bs.qq_plot(X, f, trace.mean().values)
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
Built Distribution
File details
Details for the file bayes-splicing-0.0.5.tar.gz
.
File metadata
- Download URL: bayes-splicing-0.0.5.tar.gz
- Upload date:
- Size: 17.9 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/32.0 requests/2.26.0 requests-toolbelt/0.9.1 urllib3/1.26.7 tqdm/4.62.3 importlib-metadata/4.8.1 keyring/23.1.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.9.7
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | d3c243ab4f006aec078e706eb1a834721eab48ff480311e7a8c1c118304eab39 |
|
MD5 | d00b5f20c580a05beb0b6ed359c567dc |
|
BLAKE2b-256 | bcfc028885b7f6d6dea6e523e1998ebb0bcc1452221473760009b4bd2bb295e3 |
File details
Details for the file bayes_splicing-0.0.5-py3-none-any.whl
.
File metadata
- Download URL: bayes_splicing-0.0.5-py3-none-any.whl
- Upload date:
- Size: 19.8 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/32.0 requests/2.26.0 requests-toolbelt/0.9.1 urllib3/1.26.7 tqdm/4.62.3 importlib-metadata/4.8.1 keyring/23.1.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.9.7
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 4fbc4ebaff153c08771aa161bed906bb0a2bbea471c363f3f084587fc0764eb2 |
|
MD5 | 5984605df180f48fe0789fa579b23e6e |
|
BLAKE2b-256 | 8a5310bd94e976475faa04d36592f553cbc9a0393332c5831c0989a5b57fc74c |