Skip to main content

A Python package for making reliable predictions using calibrating priors.

Project description

fitdistcp

fitdistcp is a free Python package for fitting statistical models using calibrating priors, with the goal of making reliable predictions. Install using >pip install fitdistcp.

fitdistcp implements the method developed in Reducing Reliability Bias in Assessments of Extreme Weather Risk using Calibrating Priors, S. Jewson, T. Sweeting and L. Jewson (2024): https://doi.org/10.5194/ascmo-11-1-2025.

More information and examples are available at https://www.fitdistcp.info, including the equivalent (more comprehensive) R package.

Development of this package was funded by the Lighthill Risk Network: https://lighthillrisknetwork.org.

Example: Fitting a GEV distribution

import numpy as np
import scipy.stats
import matplotlib.pyplot as plt
import fitdistcp.genextreme

x = scipy.stats.genextreme.rvs(0, size=20)                  # make some example training data 
p = np.arange(0.001,0.999,0.001)                            # define the probabilities at which we wish to calculate the quantiles
q = fitdistcp.genextreme.ppf(x,p)                           # this command calculates two sets of predictive quantiles for the GEV, 
                                                            # one based on maxlik, and one that includes parameter uncertainty based on a calibrating prior
print(q['ml_params'])                                       # have a look at the maxlik parameters
plt.plot(q['ml_quantiles'],p, label='ML')                   # plot the maxlik quantiles
plt.plot(q['cp_quantiles'],p,color='red', label='CP')       # plot the quantiles that include parameter uncertainty
plt.legend()
plt.show()

Models

The following models are currently supported. Let us know if you have any suggestions for other models to include.

  • expon: Exponential distribution
  • gamma: Gamma distribution
  • genextreme: Generalised Extreme Value (GEV) distribution
  • genextreme_p1 & genextreme_p12: Generalised Extreme Value (GEV) distribution, with 1 predictor, 2 predictors
  • genpareto: Generalised Pareto distribution
  • gumbel: Gumbel distribution
  • lnorm: Lognormal distribution
  • norm: Normal distribution
  • weibull: Weibull distribution

Methods

Four methods are provided for each model: ppf(x) (quantiles, 'percentage point function'), rvs(n, x) (random variates), pdf(x) and cdf(x), where x is the data to fit. To use, e.g. ppf for the normal distribution, import fitdistcp.norm and call fitdistcp.norm.ppf(x). To test the methods use e.g. fitdistcp.norm.reltest(). Reltests (reliability tests) are used to test the reliability of quantile calculations for making predictions.

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

fitdistcp-0.1.1.tar.gz (82.1 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

fitdistcp-0.1.1-py3-none-any.whl (104.1 kB view details)

Uploaded Python 3

File details

Details for the file fitdistcp-0.1.1.tar.gz.

File metadata

  • Download URL: fitdistcp-0.1.1.tar.gz
  • Upload date:
  • Size: 82.1 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.13.5

File hashes

Hashes for fitdistcp-0.1.1.tar.gz
Algorithm Hash digest
SHA256 455ef8fee442d9d6223c69c04f4515c5243dccf5d8e7a63c7022201883329555
MD5 269d821fd21485336a7276332bc1ef44
BLAKE2b-256 1d487172e5df7dc429e17703b6eb2c7f000fac7f71d47b80c1dff8b1ff9a0ff5

See more details on using hashes here.

File details

Details for the file fitdistcp-0.1.1-py3-none-any.whl.

File metadata

  • Download URL: fitdistcp-0.1.1-py3-none-any.whl
  • Upload date:
  • Size: 104.1 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.13.5

File hashes

Hashes for fitdistcp-0.1.1-py3-none-any.whl
Algorithm Hash digest
SHA256 276b9b5d823da0361bdbf0384798d7fa55bc2b409dae3b68e3b4169bf5629894
MD5 c2cf91cb2912abf04883cd4f95840db1
BLAKE2b-256 872f48572e135e629bf229449837d89d3aba8a42099b0ec2880ebbd20a7ba097

See more details on using hashes here.

Supported by

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