A library for sampling correlated binary variates.
Project description
bindata 
A python replication of the homonymous R library
bindata,
based on the paper
"Generation of correlated artificial binary data.",
by Friedrich Leisch, Andreas Weingessel, and Kurt Hornik.
The library fully replicates the existing R-package with the following functions:
bincorr2commonprobcheck_commonprob(check.commonprobin R)commonprob2sigmacondprobra2barmvbinsimul_commonprob(simul.commonprobin R)
Precomputed (via Monte Carlo simulations) SimulVals are also available.
Installation
bindata can be installed with pip as:
pip install bindata
How to
Generate uncorrelated variates
import bindata as bnd
margprob = [0.3, 0.9]
X = bnd.rmvbin(N=100_000, margprob=margprob)
Now let's verify the sample marginals and correlations:
import numpy as np
print(X.mean(0))
print(np.corrcoef(X, rowvar=False))
[0.30102 0.9009 ]
[[ 1. -0.00101357]
[-0.00101357 1. ]]
Generate correlated variates
From a correlation matrix
corr = np.array([[1., -0.25, -0.0625],
[-0.25, 1., 0.25],
[-0.0625, 0.25, 1.]])
commonprob = bnd.bincorr2commonprob(margprob=[0.2, 0.5, 0.8],
bincorr=corr)
X = bnd.rmvbin(margprob=np.diag(commonprob),
commonprob=commonprob, N=100_000)
print(X.mean(0))
print(np.corrcoef(X, rowvar=False))
[0.1996 0.50148 0.80076]
[[ 1. -0.25552 -0.05713501]
[-0.25552 1. 0.24412401]
[-0.05713501 0.24412401 1. ]]
From a joint probability matrix
commonprob = [[1/2, 1/5, 1/6],
[1/5, 1/2, 1/6],
[1/6, 1/6, 1/2]]
X = bnd.rmvbin(N=100_000, commonprob=commonprob)
print(X.mean(0))
print(np.corrcoef(X, rowvar=False))
[0.50076 0.50289 0.49718]
[[ 1. -0.20195239 -0.33343712]
[-0.20195239 1. -0.34203855]
[-0.33343712 -0.34203855 1. ]]
For a more comprehensive documentation please consult the documentation.
Acknowledgements
-
"Generation of correlated artificial binary data.", by Friedrich Leisch, Andreas Weingessel, and Kurt Hornik.
Author
Luca Mingarelli, 2022
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
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file bindata-1.0.0.tar.gz.
File metadata
- Download URL: bindata-1.0.0.tar.gz
- Upload date:
- Size: 127.1 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.12.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
dd7403fafd2fbee3df6b3424f99556c2b84e2f0c40306bc6bbc8baaf2ec17739
|
|
| MD5 |
9ba795ffd9576a26292bdaa41afdf450
|
|
| BLAKE2b-256 |
2eb96e58cb7428f2a84b6838c34bd68d158693e5affc555766ded142e7fc78d0
|
File details
Details for the file bindata-1.0.0-py3-none-any.whl.
File metadata
- Download URL: bindata-1.0.0-py3-none-any.whl
- Upload date:
- Size: 126.9 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.12.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
83beea630a4fc343deae4d3f940362c1a468bbddd1ebd6c62a992d89d82b8ddd
|
|
| MD5 |
ce0eb91c411d21a256da4c92f5dfc894
|
|
| BLAKE2b-256 |
3660a24c5510d4e1753a36e4b3f67935b056de500f7fab929b6bf77931d06024
|