Python library for implementing post-randomisation method (PRAM) for disclosure control in synthetic data
Project description
pram
Python implementation of post-randomisation method for disclosure control
Call the pram() method with a Pandas dataframe to apply post-randomisation perturbation to the dataset using a generated transition matrix.
You can specify the minimum diagonal value (i.e. the minimum probability that a data point remains unchanged) and an alpha value to modify the likelihood of perturbation (from zero to one).
By default all columns are modified, and there is no stratification. However you can specify the columns to process as a list, and also specify a column to use for stratification. If stratification is used, the column used for stratification is not modified.
The behaviour is largely the same as that in the "sdcMicro" R package.
Command-line usage
You can also call Pram from the command line, supplying a CSV file input and path to output the perturbed dataset as CSV.
From the command line you can also use the -f switch to print a table of the frequencies of categories in the original and changed versions of the dataset.
Example:
pram mydata.csv output.csv 0.8 0.5 -f
This will load the data in mydata.csv, run PRAM with m=0.8 and a=0.5, save the output in output.csv, and print a frequency table to the console.
Example
from pram import pram
persons = [
{'gender': 'female', 'region': 'rural', 'education': 'higher', 'age': 27},
{'gender': 'female', 'region': 'rural', 'education': 'lower', 'age': 35},
{'gender': 'male', 'region': 'rural', 'education': 'lower', 'age': 26},
{'gender': 'male', 'region': 'rural', 'education': 'lower', 'age': 22},
{'gender': 'female', 'region': 'urban', 'education': 'higher', 'age': 41},
{'gender': 'female', 'region': 'urban', 'education': 'lower', 'age': 54},
{'gender': 'female', 'region': 'rural', 'education': 'higher', 'age': 38},
{'gender': 'female', 'region': 'rural', 'education': 'lower', 'age': 44},
{'gender': 'male', 'region': 'rural', 'education': 'lower', 'age': 18},
{'gender': 'male', 'region': 'rural', 'education': 'lower', 'age': 52},
{'gender': 'female', 'region': 'urban', 'education': 'higher', 'age': 44},
{'gender': 'female', 'region': 'urban', 'education': 'lower', 'age': 35},
{'gender': 'female', 'region': 'rural', 'education': 'higher', 'age': 33},
{'gender': 'female', 'region': 'rural', 'education': 'lower', 'age': 31},
{'gender': 'male', 'region': 'rural', 'education': 'lower', 'age': 40},
{'gender': 'male', 'region': 'rural', 'education': 'lower', 'age': 23},
{'gender': 'female', 'region': 'urban', 'education': 'higher', 'age': 68},
{'gender': 'female', 'region': 'urban', 'education': 'lower', 'age': 19},
{'gender': 'female', 'region': 'rural', 'education': 'higher', 'age': 27},
{'gender': 'female', 'region': 'rural', 'education': 'lower', 'age': 24},
{'gender': 'male', 'region': 'rural', 'education': 'lower', 'age': 48},
{'gender': 'male', 'region': 'rural', 'education': 'lower', 'age': 38},
{'gender': 'female', 'region': 'urban', 'education': 'higher', 'age': 30},
{'gender': 'female', 'region': 'urban', 'education': 'lower', 'age': 27}
]
df = pd.DataFrame(persons)
print(pram(df))
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 pram-0.1.3.tar.gz
.
File metadata
- Download URL: pram-0.1.3.tar.gz
- Upload date:
- Size: 6.3 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.4.1 importlib_metadata/4.0.1 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.7.1
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 780be7acd3ed147fa72650688e11b2f294c2139d75760e3c9ebf11fd676877d6 |
|
MD5 | 58896bcd907348b66f5801c37d445f1f |
|
BLAKE2b-256 | da452e37910469ccd5ec73dfaf9465604e5c4a7372dab81fa2ac82a33cd0d0c7 |
File details
Details for the file pram-0.1.3-py2.py3-none-any.whl
.
File metadata
- Download URL: pram-0.1.3-py2.py3-none-any.whl
- Upload date:
- Size: 5.8 kB
- Tags: Python 2, Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.4.1 importlib_metadata/4.0.1 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.7.1
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 53fab2ae3daf9a37de52bb5792eac714cd8be382192b5b084ae1496c702206fa |
|
MD5 | 22443824cd64ad4502ffb7b0ac787038 |
|
BLAKE2b-256 | f0a7d7edcdd48de7f15d7bbc54cbc1dc3ce4e9fd430c9de1b61c60ae2ea38942 |