Skip to main content

Create a report for mobility data with differential privacy guarantees.

Project description

https://img.shields.io/pypi/v/dp_mobility_report.svg Documentation Status

dp_mobility_report: A python package to create a mobility report with differential privacy (DP) guarantees, especially for urban human mobility data.

Install

pip install dp-mobility-report

or from GitHub:

pip install git+https://github.com/FreeMoveProject/dp_mobility_report

Data preparation

df:

  • A pandas DataFrame.

  • Expected columns: User ID uid, Trip ID tid, timestamp datetime (expected is a datetime-like string, e.g., in the format yyyy-mm-dd hh:mm:ss. If datetime contains int values, it is interpreted as sequence positions, i.e., if the dataset only consists of sequences without timestamps), latitude and longitude in CRS EPSG:4326 lat and lng. (We thereby closely followed the format of the scikit-mobility TrajDataFrame.)

  • Here you can find an example dataset.

tessellation:

  • A geopandas GeoDataFrame with polygons.

  • Expected columns: tile_id.

  • The tessellation is used for spatial aggregations of the data.

  • Here you can find an example tessellation.

  • If you don’t have a tessellation, you can use this code to create a tessellation.

Create a mobility report as HTML

import pandas as pd
import geopandas as gpd
from dp_mobility_report import DpMobilityReport

df = pd.read_csv(
    "https://raw.githubusercontent.com/FreeMoveProject/dp_mobility_report/main/tests/test_files/test_data.csv"
)
tessellation = gpd.read_file(
    "https://raw.githubusercontent.com/FreeMoveProject/dp_mobility_report/main/tests/test_files/test_tessellation.geojson"
)

report = DpMobilityReport(df, tessellation, privacy_budget=10, max_trips_per_user=5)

report.to_file("my_mobility_report.html")

The parameter privacy_budget (in terms of epsilon-DP) determines how much noise is added to the data. The budget is split between all analyses of the report. If the value is set to None no noise (i.e., no privacy guarantee) is applied to the report.

The parameter max_trips_per_user specifies how many trips a user can contribute to the dataset at most. If a user is represented with more trips, a random sample is drawn according to max_trips_per_user. If the value is set to None the full dataset is used. Note, that deriving the maximum trips per user from the data violates the differential privacy guarantee. Thus, None should only be used in combination with privacy_budget=None.

Please refer to the documentation for information on further parameters.

Examples

Berlin mobility data simulated using the DLR TAPAS Model: [Code used for Berlin]

Madrid CRTM survey data: [Code used for Madrid]

Beijing Geolife dataset: [Code used for Beijing]

(Here you find the code of the data preprocessing to obtain the needed format)

Citing

if you use dp-mobility-report please cite the following paper:

@article{
        doi:10.1080/17489725.2022.2148008,
        title = {Towards Mobility Reports with User-Level Privacy},
        author = {Kapp, Alexandra and {von Voigt}, Saskia Nu{\~n}ez and Mihaljevi{\'c}, Helena and Tschorsch, Florian},
        year = {2022},
        journal = {Journal of Location Based Services},
        eprint = {https://www.tandfonline.com/doi/pdf/10.1080/17489725.2022.2148008},
        publisher = {{Taylor \& Francis}},
        doi = {10.1080/17489725.2022.2148008}
}

Credits

This package was highly inspired by the pandas-profiling/pandas-profiling and scikit-mobility packages.

This package was created with Cookiecutter and the audreyr/cookiecutter-pypackage project template.

History

0.1.8 (2023-01-16)

  • Refine handling of OD Analysis input data:
    • warn if there are no trips with more than a single record and exclude OD Analysis

    • use all trips for travel time and jump length computation instead of only trips inside tessellation.

0.1.7 (2023-01-10)

  • Restructuring of HTML headlines.

0.1.6 (2023-01-09)

  • Refactoring of template files.

0.1.5 (2022-12-12)

  • Remove scikit-mobility dependency and refactor od flow visualization.

0.1.4 (2022-12-07)

  • Remove Google Fonts from HTML.

0.1.3 (2022-12-05)

  • Handle FutureWarning of pandas.

0.1.2 (2022-11-24)

  • Enhanced documentation for all properties of DpMobilityReport class

0.1.1 (2022-10-27)

  • fix bug: prevent error “key trips not found” in trips_over_time if sum of trip_count is 0

0.1.0 (2022-10-21)

  • make tessellation an Optional parameter

  • allow DataFrames without timestamps but sequence numbering instead (i.e., integer for timestamp column)

  • allow to set seed for reproducible sampling of the dataset (according to max_trips_per_user)

0.0.8 (2022-10-20)

  • Fixes addressing deprecation warnings.

0.0.7 (2022-10-17)

  • parameter for a custom split of the privacy budget between different analyses

  • extend ‘analysis_selection’ to include single analyses instead of entire segments

  • parameter for ‘analysis_exclusion’ instead of selection

  • bug fix: include all possible categories for days and hour of days

  • bug fix: show correct percentage of outliers

  • show 95% confidence-interval instead of upper and lower bound

  • show privacy budget and confidence interval for each analysis

0.0.6 (2022-09-30)

  • Remove scaling of counts to match a consistent trip_count / record_count (from ds_statistics) in visits_per_tile, visits_per_tile_timewindow and od_flows. Scaling was implemented to keep the report consistent, though it is removed for now as it introduces new issues.

  • Minor bug fixes in the visualization: outliers were not correctly converted into percentage.

0.0.5 (2022-08-26)

Bug fix: correct scaling of timewindow counts.

0.0.4 (2022-08-22)

  • Simplify naming: from MobilityDataReport to DpMobilityReport

  • Simplify import: from from dp_mobility_report import md_report.MobilityDataReport to from dp_mobility_report import DpMobilityReport

  • Enhance documentation: change style and correctly include API reference.

0.0.3 (2022-07-22)

  • Fix broken link.

0.0.2 (2022-07-22)

  • First release to PyPi.

  • It includes all basic functionality, though still in alpha version and under development.

0.0.1 (2021-12-16)

  • First version used for evaluation in xx.

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

dp-mobility-report-0.1.8.tar.gz (77.4 kB view details)

Uploaded Source

Built Distribution

dp_mobility_report-0.1.8-py2.py3-none-any.whl (79.0 kB view details)

Uploaded Python 2 Python 3

File details

Details for the file dp-mobility-report-0.1.8.tar.gz.

File metadata

  • Download URL: dp-mobility-report-0.1.8.tar.gz
  • Upload date:
  • Size: 77.4 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.1 CPython/3.10.8

File hashes

Hashes for dp-mobility-report-0.1.8.tar.gz
Algorithm Hash digest
SHA256 05d21e03571c6c05067dc21c45e93119e8f5c4750ff0d64cb3e65c6447750ff5
MD5 89aa297c4e68b9ca8ea4ef21f61a7f0d
BLAKE2b-256 f55cc375110bbf0ac1847f82b01a0dedf8997bdb1e19c5fce38358fd8369bb5e

See more details on using hashes here.

File details

Details for the file dp_mobility_report-0.1.8-py2.py3-none-any.whl.

File metadata

File hashes

Hashes for dp_mobility_report-0.1.8-py2.py3-none-any.whl
Algorithm Hash digest
SHA256 e78be63c3a79baea17795eade9b06464b78649121a5a15cc08c8597e6f55f7cc
MD5 e09be4568654a473c9fc6e050bad37a4
BLAKE2b-256 cac0358662094ac08db8db324af766a70c296156fbee12067ef6231376782be5

See more details on using hashes here.

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page