A package for stochastic population imputation
Project description
Stochastic Impute: Synthetic Data Generation Engine
A Python utility designed to generate an integreated synthetic unit record population data using aggregated public data sources (e.g., from Stats NZ Data Explorer).
This tool is optimized for large-scale microdata generation where individual attributes are assigned based on conditional probability distributions.
The New Zealand unit records of synthetic population can be explored at here
🚀 Key Features
- Synthetic Unit Record Generation: Transforms multiple aggregated data sources into a unified, granular unit-record dataset.
- Dynamic Column Matching: Automatically identifies shared features between the base population and reference data.
- Missingness-Aware Logic: Handles rows with
NaNvalues by dynamically re-calculating probabilities based only on the available non-null features. - Stochastic Selection: Uses weighted random sampling to preserve the natural variance and distribution of the source data.
- Optimized Performance: Processes millions rows in seconds by grouping identical "missingness patterns" rather than iterating row-by-row.
Please see the FAQ for more details.
📋 Installation
The package can be installed via
pip install syspop_v2
📋 Data Requirements
1. Population Seed
The starting point for your synthetic data.
- Contain existing columns you wish to "expand".
2. Reference Distributions
Each entry in the dictionary must be a DataFrame containing:
- Shared Features: (e.g.,
age,location) to match against the seed. - Target Column: The attribute being generated.
💻 Example Usage
from pandas import DataFrame
from numpy import nan
from syspop.model.stochastic_impute import stochastic_impute
from syspop.postp.vis import plot_distribution
# ---------------------------------
# 1. Define base aggregated population data (e.g., from a census)
# For example, a total of 50 + 60 + 70 people in this example
# ---------------------------------
base_population_data = DataFrame(
{
"gender": [1, 2, 1],
"age": [25, 30, 40],
"value": [50, 60, 70],
}
)
# ---------------------------------
# 2. Define reference aggregated data (e.g., Work Status distribution)
# For example, a total of 8 + 2 + 6 + 4 people in this reference data
# ---------------------------------
income_data = DataFrame(
{
"gender": [1, 1, 2, 2],
"age": [25, 30, 25, nan],
"work_status": [1, 2, 1, 2],
"income": [50000, 60000, 55000, 45000],
"value": [8, 2, 6, 4],
}
)
# ---------------------------------
# 3. Combine data into a dictionary for the imputation process
# ---------------------------------
data = {"seed": base_population_data, "income": income_data}
# -------------------------------------------------------------------------
# 4. Imputation Task Configuration
#
# OBJECTIVE:
# Define imputation models where 'features' (age, gender)
# predict 'targets' (work_status and income).
#
# HANDLING SAMPLE SIZE DISCREPANCIES (Sparsity Alignment):
# The source datasets (e.g., income) sometimes have smaller populations
# than the seed population (180 records). To maintain statistical
# consistency, we introduce NaNs into the output for matching
# reference data in 'exceedance_list'.
#
# Example: If the income dataset only contains 20 records, we randomly
# retain only 20 income/work_status in the output population and set the remaining
# 160 to NaN
# -------------------------------------------------------------------------
task_list = {
"income": {
"targets": {"work_status": "category", "income": "numeric"},
"features": ["age", "gender"],
}
}
exceedance_list = ["income"]
# ---------------------------------
# 5. Run the stochastic imputation process
# ---------------------------------
syn_pop = stochastic_impute(data, task_list, exceedance_list=exceedance_list)
# ---------------------------------
# 6. Plot distribution
# ---------------------------------
# 6.1 Plot distribution for age
plot_distribution(syn_pop, ["age"])
# 6.2 Plot joint distribution for gender + age
plot_distribution(syn_pop, ["gender", "age"])
Full examples can be acceessed in ./examples
🧠 FAQ
Is generating synthetic unit-record data in this way actually accurate?
Well, it depends on your use case and the quality of your inputs. Ideally, you should work with real unit-record data. However, in practice, this isn't always feasible (i.e., in New Zealand, if you live far away from a Stats NZ IDI data lab). This utility provides a method to statistically link different aggregated, published population benchmarks together. This allows you to build out full data pipelines and prototype products locally before taking your code into a restricted environment.
Maximizing accuracy?
The accuracy of the synthetic output depends heavily on task design. The more shared variables (covariates) present in your reference data to condition the probabilities, the closer the synthetic distribution will mirror reality.
Also, you can run the process multiple times to capture inherent uncertainties.
Are we doing any prediction modelling here ?
It is out of scope at the moment. If certain covariate values are missing from the reference data to condition the probabilities, the process simply ignores those missing values when linking the reference data to the seed data (for example, if the reference data does not contain income information for children, when integrating the reference data into the seed population data, the integrated data will just set the income for children as NaN). The reason is that many covariates in these datasets are categorical, and applying simple prediction models can struggle to capture the nuances and introduce unwanted noise or uncertainty into the output data. However, you are welcome to apply your own predictive models to handle missing data prior to running this process if your use case requires it.
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 syspop_v2-0.4.2.tar.gz.
File metadata
- Download URL: syspop_v2-0.4.2.tar.gz
- Upload date:
- Size: 18.5 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.13.5
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
36c55bc0f41e85cc62eb1e81e6ee5f52ae8154c9d9f83730239ec6e2af0b38b6
|
|
| MD5 |
acc7dfa03e06f593d9f405fcd7884d77
|
|
| BLAKE2b-256 |
9f286d81b03cbc64e70df1fee7953e304bafe05b7733dec52e2b3190af614165
|
File details
Details for the file syspop_v2-0.4.2-py3-none-any.whl.
File metadata
- Download URL: syspop_v2-0.4.2-py3-none-any.whl
- Upload date:
- Size: 12.7 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.13.5
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
950efeea4d79a596f2a2bce32b86eddd588d9db18824c77d867f2d7bb9bab7d2
|
|
| MD5 |
0b08a32058d4a75be30d310f7ce29935
|
|
| BLAKE2b-256 |
7b6349300b4b8f13a1c13f181aa583a4ce4fc8748daee2343318031634e7a05f
|