Socket
Book a DemoInstallSign in
Socket

microt-preprocessing

Package Overview
Dependencies
Maintainers
1
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

microt-preprocessing

A package that transforms raw sensor data collected from Time study app into intermediate CSV file for analysis of various purposes

0.1.91
pipPyPI
Maintainers
1

Introduction

What is this repository for?

  • This repository include Python scripts that transform raw sensor data collected from Android mobile devices into intermediate CSV file for analysis of various purposes.
  • The preprocessing scripts here intend to be used to provide reliable, consistent, and structured intermediate data file for data analysis related to MicroT project.

Summary of Preprocessed Intermediate File

The discussion on data source to include can bee found in the #86 Issue of DataProcessing repository

1. Android Smartwatch

InformationRaw Data FileIncluded DataOmitted DataIntermediate file
Prompt response[participant_folder] / logs-watch / DATE / HOUR / PromptResponses.log.csvID, EMA_type, Date, Prompt Timestamp, Time Zone, Completion Status, Reprompt, Response Timestamp, Q-Key, ResponseNone[save_path]/[participant_id]/DATE/watch_prompt_response_PARTICIPANT_DATE.csv
Battery level[participant_folder] / data-watch / DATE / HOUR / Battery.##.event.csvtimestamp, battery_level, battery_chargingNone[save_path]/[participant_id]/DATE/watch_battery_PARTICIPANT_DATE.csv
Accelerometer data[participant_folder] / data-watch / DATE / HOUR / AndroidWearWatch-AccelerationCalibrated-NA.*.sensor.bafheader_timestamp, accelation_meters_per_second_squared(X,Y,Z axis), MIMS-unitNone[participant_folder] / data-watch / DATE / HOUR / 020000000000-AccelerationCalibrated.*.sensor.csv, mims_DATE_HOUR.csv; a copy of former two in [save_path]/[participant_id]/DATE/
App usages[participant_folder] / data-watch / DATE / HOUR / AppEventCounts.csvlog_time, last_hour_timestamp, current_hour_time_stamp, app_package_name, event_time_stamp, app_eventNone[save_path]/[participant_id]/DATE/phone_app_usage_PARTICIPANT_DATE.csv

2. Android Smartphone

InformationRaw Data FileIncluded DataOmitted DataIntermediate file
Prompt response[participant_folder] / logs / DATE / HOUR / PromptResponses.log.csvID, EMA_type, Date, Prompt Timestamp, Time Zone, Completion Status, Reprompt, Response Timestamp, Q-Key, ResponseNone[save_path]/[participant_id]/DATE/phone_prompt_response_PARTICIPANT_DATE.csv
GPS data[participant_folder] / data / DATE / HOUR / GPS.csvlog_time, location_time, lat, long, horizontal_accuracy, provider, speed, altitude, bearingNone[save_path]/[participant_id]/DATE/phone_GPS_PARTICIPANT_DATE.csv
step count[participant_folder] / data / DATE / HOUR / StepCounterService.csvlog_time_stamp, steps_last_hour, accumulated_stepsNone[save_path]/[participant_id]/DATE/phone_stepCount_PARTICIPANT_DATE.csv
Phone state and detected activities[participant_folder] / data / DATE / HOUR / ActivityDetected.csvlog_time, in_vehicle, on_bike, on_foot, running, still, tilting, walking, unknownNone[save_path]/[participant_id]/DATE/phone_detected_activity_PARTICIPANT_DATE.csv
Phone usage events and broadcasts[save_path]/[participant_id]/DATE/phone_usage_broadcasts_PARTICIPANT_DATE.csv
Environmental sensorsLightSensorStats.csv, ProximitySensorManagerService.csv, AmbientPressManagerService.csv, AmbientTempManagerService.csv, AmbientHumidManagerService.csvlog time, sensor value, sensor maxNone

Code Book

Detailed explanation of columns in intermediate files can be found in the code book.

Python Version

Python 3.6+ (Other versions haven't been tested but should be fine)

Dependencies

  • For user who wants to include accelerometer and MIMS-unit, the below are extra set-up:
    • The MIMS-unit depends on particular R package, so install R on your system.
    • Add R to your environment variables. For windowsOS users, put path similar to "C:\Program Files\R\R-4.0.2\bin\x64" to your path in system variables, and reboot your computer.

Usage Option1: Install and use as a python package

Install package

The pypi link can be accessed here.

> pip install microt-preprocessing

Import package in python

from microt_preprocessing import time_study_preprocessing_main

microT_root_path = <microT_root_path>                                        # path to the data source folder
intermediate_file_save_path = <intermediate_file_save_path>                  # path to the destination folder
decrypt_password = <decrypt_password>                                        # decryption password for GPS file
delete_raw = "0" or "1"				                                         # "0" denotes not deleting data source, "1" denotes deleting data source
date = "2020-06-11"			                                                 # specific dates to be preprocessed

time_study_preprocessing_main.preprocessing_all_ema.run_ema_main(microT_root_path, intermediate_file_save_path, decrypt_password, delete_raw, date)

Usage Option2: Clone this project and run scripts

  • Run script

    • For smartphone
    python preprocessing_all_ema.py <microT_root_path> <intermediate_file_save_path> [date_start]
    
    • For smartwatch
    python preprocessing_all_uema.py <microT_root_path> <intermediate_file_save_path> <participants_included_text_file_path> [date_start] [date_end]
    

Who do I talk to?

Maintained by Aditya and Jixin

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

About

Packages

Stay in touch

Get open source security insights delivered straight into your inbox.

  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc

U.S. Patent No. 12,346,443 & 12,314,394. Other pending.