Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

DP-epidemiology

Package Overview
Dependencies
Maintainers
1
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

DP-epidemiology

A package for differential private release of fianancial data in context of epidemiology

  • 0.1.0
  • PyPI
  • Socket score

Maintainers
1

Hotspot Detection, Mobility, Pandemic Stages and Contact Metric using Differential Privacy

.. image:: https://readthedocs.org/projects/pets-for-public-health-challenge/badge/?version=latest :target: https://pets-for-public-health-challenge.readthedocs.io/en/latest/?badge=latest :alt: Documentation Status

.. This README.rst should render properly both on GitHub and in Sphinx.

Hotspot Detection

Description

Areas with high physical economic activities can be identified as a pandemic hotspot. This analysis tracks pandemic hotspots by monitoring differential private release of financial transactions in a city and identifying areas with high transaction activity.

Assumptions

  • Transaction type : Only OFFLINE transactions contribute to physical hotspots.
  • Transaction metric : Number of transactions is more relevant than the total value of transactions.
  • Maximum transaction cap : Maximum number of transactions (nb_transaction) is assumed to be 454. Setting a bound of (0,600).
  • Public data : Number of postal codes in a city is assumed to be public information.

Algorithm

#. Add City Column: A new city column is added based on the postal codes (make_preprocess_location). #. Filter OFFLINE Transactions: Only "OFFLINE" transactions are considered (make_filter). #. Filter City Postal Codes: Filter for the postal codes of the selected city (make_filter). #. Filter by Time Frame : Filter data for the selected time frame (make_truncate_time). #. Transaction Summing & Noise Addition: Sum the number of transactions by postal code, and add Gaussian noise (make_private_sum_by). #. Visualization: Differentially private data is plotted on a colored map for hotspot visualization.

Sensitivity and Epsilon Analysis

  • Sensitivity : In a single time stamp, 1 merchant can come only once in a particular zip code but can appear in upto 3 zip codes. So, if we wanted to release measures about a single zip code sensitivity would be 1 but since we want to release data for all zip codes, the sensitivity used for each zip code is 3.
  • Scaling with Time: For multiple time stamps, sensitivity is 3 * no_of_time_stamps.
  • Epsilon Budget: The epsilon spent for each query is .
  • Scale Calculation: Scale = (3 * no_of_time_stamps* upper_bound) / ∈.

Mobility Detection

Description

This analysis tracks mobility by monitoring differential private time series release of financial transactions in the retail_and_recreation, grocery_and_pharmacy and transit_stations super categories which matches with google mobility data for easy validation.

Assumptions

  • Transaction metric : Number of transactions is more relevant than the total value.
  • Online and Offline transactions : Both contribute to mobility inference.
  • Maximum transaction cap: Maximum number of transactions (nb_transaction) is assumed to be 454. Setting a bound of (0,600).

Algorithm

#. Add City Column: A new city column is added based on postal codes (make_preprocess_location). #. Add Super Category Column : A new merch_super_category column is added for classifying transactions into retail_and_recreation, grocery_and_pharmacy and transit_stations categories (make_preprocess_merchant_mobility). #. Filter for City: Data for the selected city is filtered (make_filter). #. Filter for super category: data is filtered for retail_and_recreation, grocery_and_pharmacy and transit_stations categories (make_filter). #. Filter by Time Frame: Data is filtered for the selected time frame (make_truncate_time). #. Transaction Summing & Noise Addition: Sum the number of transactions by postal code for each timestep and add Gaussian noise (make_private_sum_by).

Sensitivity and Epsilon Analysis

  • Sensitivity per Merchant: Sensitivity is 3 for each merchant.
  • Scaling with Time: For multiple timesteps, sensitivity is 3 * no_of_time_steps.
  • Epsilon Budget: The epsilon spent per timestep is ∈ .
  • Scale Calculation: Scale = (3 * no_of_time_steps* upper_bound) / ∈.

Validation

  • External Data Comparison: Compare mobility results with publicly available COVID-19 mobility reports, e.g., Google COVID-19 Mobility Report for Bogotá <https://www.gstatic.com/covid19/mobility/2022-10-15_CO_Bogota_Mobility_Report_en.pdf>_

Pandemic Adherence Detection

Description

Analyzes transaction behavior to identify pandemic stages by comparing transactions in essential vs luxurious goods categories.

Assumptions

  • Essential Goods: Includes Utilities (Electric, Gas, Water), Drug Stores, Grocery Stores, Hospitals, General Retail Stores.
  • Luxurious Goods: Includes Hotels, Bars, Restaurants.
  • Transaction metric: Number of transactions is more relevant than the total value.
  • Online and Offline transactions: Both are considered.

Algorithm

#. Add City Column : A new city column is added based on postal codes (make_preprocess_location). #. Filter for City : Data for the selected city is filtered (make_filter). #. Add Super Category Column : A new merch_super_category column is added for classifying transactions into luxurious and essential categories (make_preprocess_location). #. Filter by Super Category : Only transactions related to luxurious or essential goods are filtered out (make_filter). #. Filter by Time Frame : Data is filtered for the selected time frame (make_truncate_time). #. Transaction Summing & Noise Addition: Sum the number of transactions by postal code and add Gaussian noise (make_private_sum_by). #. Visualization : Differentially private data is plotted for visualization of pandemic stages.

Sensitivity and Epsilon Analysis

  • Sensitivity per Category : Sensitivity is 3 for each category (essential or luxurious goods).
  • Scaling with Time : For multiple timesteps, sensitivity is 3 * no_of_time_steps.
  • Epsilon Budget : The epsilon spent per timestep is ∈.
  • Scale Calculation : Scale = (3 * no_of_time_steps* upper_bound) / ∈.

Contact Pattern Matrix Estimation

Description

Estimates the contact matrix by analyzing transactional data for different age groups across various merchandise categories.

Assumptions

#. Proportion of Age Groups : Assumed participation in merchandise categories follows an age group proportion map.

  • References: research paper <https://www.researchgate.net/figure/Passenger-age-distribution-and-choice-of-airline-model_tbl3_229358687>_

  • This age group distribution for various merchandise categories can be made more accurate by referring to the data from <https://www.statista.com/>_.

.. code-block:: python

 age_group_proportion_map = {
'Airlines': [25, 40, 15],
'Bars/Discotheques': [50, 35, 15],
'Hospitals' : [15, 20, 30],
'Drug Stores/Pharmacies' : [15, 20, 30 ],
'Computer Network/Information Services': [40, 35, 20],
'General Retail Stores': [20, 35, 25],
'Grocery Stores/Supermarkets': [20, 35, 25],
'Utilities: Electric, Gas, Water': [15, 30, 30],
'Hotels/Motels': [20, 25, 30],
'Restaurants': [25, 25, 25]
}

#. The persons, involved in the transactions, only make contact with individuals also involved in the transactions from the data. #. Every transaction under nb_transactions is done by a unique individual and this is true across different merchant IDs as well. Thus, total number of unique individuals is equal to the total number of transactions across all the merchant IDs. #. The contacts among various age groups is exclusive ie every individual, from any given age group, make contact with distinct individuals from other age groups.. In the video, they also took this assumptions.

Algorithm

#. Filter Week : Select the specific week for analysis. #. Filter City : Choose the city of interest (e.g., Bogotá). #. Filter OFFLINE Transactions : Only consider offline transactions. #. Group by Merchant Category : Sum the number of transactions (nb_transactions). #. Private Count of Postal Codes: Obtain the private count of unique postal codes for each merchant category and week. #. Compute Private Mean Transactions : Calculate the average number of transactions per zip code using the age group proportion map.

Sensitivity and Epsilon Analysis

  • Sensitivity per Merchant: Sensitivity is 3 for each merchant in the Airline category.
  • Scaling with Time: For multiple timesteps, sensitivity is 3 * no_of_time_steps.
  • Scaling with Upper Bound: Sensitivity is further scaled by the upper bound of the number of transactions for any merchant category after doing group by with zip code and merchant category. Updated sensitivity is 3 * no_of_time_steps * upper_bound.
  • Epsilon Budget: The epsilon spent per timestep is ∈ .
  • Scale Calculation: Scale = (3 * no_of_time_steps * uppper_bound) / ∈.

Challenges

  • Ensuring the contact matrix accurately reflects transaction participation from different age groups.
  • Making the contact matrix symmetric to ensure mutual interaction between age groups.
  • Difficulty in gathering granular public data for more detailed age group division.

File Strurcture

  • dist

    • dp_epidemiology-0.0.2-py3-none-any.whl
    • dp_epidemiology-0.0.2.tar.gz
  • docs

    • api.rst
    • conf.py
    • index.rst
    • make.bat
    • Makefile
    • requirements.in
    • requirements.txt - This file contains the required libraries for the project.
    • usage.rst - This file contains the usage of the project.
  • src

    • DP_epidemiology
      • contact_matrix.py - This module contains the implementation of the contact matrix estimation.
      • hotspot_analyzer.py - This module contains the implementation of the hotspot detection.
      • mobility_analyzer.py - This module contains the implementation of the mobility detection.
      • pandemic_stage_analyzer.py - This module contains the implementation of the pandemic stage detection.
      • utilities.py - This module contains the utility functions used in the other modules.
      • viz.py - This module contains the function for plotly visualization app for hotspot, mobility, pandemic stage detection and contact matrix estimation.
      • __init__.py
  • tests

    • test.py - This module contains the test cases for all the modules in the src folder.

FAQs


Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc