Performs controlled rounding of tabular data
Project description
Description
Controlled rounding is a technique used in data publishing to ensure that data released for public use meets specific confidentiality requirements. The process adjusts the data values by rounding them to a predetermined base in a such a way that the margins of the resulting table remain closer to their original values than they would should the table's entries have been simply rounded to their nearest base.
Here the solution to this problem is found by applying a best-first-search method where the decision is to round up or down each non-margin entry. Three distance functions are used to sort partial solutions.
- The max absolute difference between a margin's value and it's original value.
- The average absolute difference between a margin's value and it's original value. The average is taken over the rounded cells so far.
- The average absolute difference between a table cell's rounded value and it's original value. The average is taken over the rounded cells so far.
Ties on the first function are resolved by looking at the second and then third one. The first complete solution found is returned.
Usage
ctrl_round(df_in, by, var, margins, rounding_base, fix_rounding_dist, max_heap_size):
Aggregates a dataframe and perform controlled rounding of it's entries.
input:
- df_in : pandas DataFrame
- by : list of column names on which to aggregate the input DataFrame
- margins : list of lists of column names indicating which grouping to aggregate. Can be empty, in which case all grouping and subgrouping are aggregated. Controlling the rounding on a subset of margins will improve the run-time but will leave the other margins free to potentially deviate far from their original values.
- var : column to be aggregated
- rounding_base : the rounding base. Has to be greater than 0.
- fix_rounding_dist : if an entry is close to a rounded value by p% of the rounding base, round that entry to its closest rounded value and remove the other rounded value from consideration for that entry. This reduces the search space and run time at the cost of the quality of the solution.
- max_heap_size : the maximum size of the heap. Has to be greater than 2. Default is 1000. A smaller heap will lead to faster run-time at the cost of the quality of the solution.
output:
A dictionary with the following keys:
- input_table : the original input data with columns listed in the "by" and "var" input parameters.
- input_margins :
- rounded_table : the rounded solution of input data with columns listed in the "by" and "var" input parameters.
- rounded_margins :
- objectives : the objective function's value for the solution
- opt_report : a dictionary containing information about the optimisation process with the following keys:
- n_iterations : the number of partial solutions expanded
- n_heap_purges : the number of times the heap was purged, keeping the best solutions so far
- n_sol_purged : the total number of partial solutions that got purged and never further expanded
- n_cells : the number of entries in the input table
- n_margins : the number of margin values from the input table
- n_fixed_cells : the number of cells where the rounding is fixed and not subject to the optimisation process
generate_random_table(n_dim,n_cat,scale):
Creates a table filled with random values with the desired number of dimensions and number of categories per dimensions.
input:
- n_dim : number of dimensions
- n_cat : number of categories per dimensions
- scale : the scale of the numbers in the table: 0 < number < scale.
output:
The generated the table as a pandas dataframe. With columns:
- 0,1,2 ... n_dim-1 : each column contains values from 0 to n_cat-1.
- value : contains a random value between 0 and scale.
Example
test = generate_random_table(3, 5, scale=2)
ctrl_round(test, by=[0,1,2], var="value", rounding_base=1, fix_rounding_dist=0.1, max_heap_size=100)
License
This project is licensed under the MIT License - see the LICENSE file for details.
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
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 CtrlRound-0.1.0.tar.gz.
File metadata
- Download URL: CtrlRound-0.1.0.tar.gz
- Upload date:
- Size: 7.9 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.1.1 CPython/3.11.0
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
7aa368c1692a844b12c65f61bdf0295d42f9fa2569953722b797735c42259af2
|
|
| MD5 |
57c4134a301af452b7691a90ad9fac72
|
|
| BLAKE2b-256 |
ab7f70cd445bc00215f1bc6e5347b2b427e23d82379c56d6405cb6c12ae4160c
|
File details
Details for the file CtrlRound-0.1.0-py3-none-any.whl.
File metadata
- Download URL: CtrlRound-0.1.0-py3-none-any.whl
- Upload date:
- Size: 9.6 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.1.1 CPython/3.11.0
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
7f4496d97ea5fba2726a59a14ff78f7d1b2820df7d35f66ec16426d63ecbbd37
|
|
| MD5 |
eb3be011b68c7c7c90df12b899a79463
|
|
| BLAKE2b-256 |
ac5f4fcf34f87e1055e0f8289d30bd132af97af8ff1725864209d2248cc81534
|