2020-06-24 00:29:01 +02:00
|
|
|
# Add as many sensor tables as you have, they all improve the computation of PHONE_SENSED_BINS.
|
|
|
|
# If you are extracting screen or Barnett's location features, screen and locations tables are mandatory.
|
2020-07-07 23:15:32 +02:00
|
|
|
TABLES_FOR_SENSED_BINS: [messages, calls, screen, battery, bluetooth, wifi]
|
2020-04-29 17:44:31 +02:00
|
|
|
|
2020-06-24 00:29:01 +02:00
|
|
|
# Participants to include in the analysis
|
|
|
|
# You must create a file for each participant named pXXX containing their device_id. This can be done manually or automatically
|
2020-06-26 22:47:31 +02:00
|
|
|
PIDS: [test01, test02, test03, test04]
|
2020-04-29 17:44:31 +02:00
|
|
|
|
2020-06-24 00:29:01 +02:00
|
|
|
|
2020-04-29 17:44:31 +02:00
|
|
|
# Global var with common day segments
|
|
|
|
DAY_SEGMENTS: &day_segments
|
2020-06-04 01:42:12 +02:00
|
|
|
[daily, morning, afternoon, evening, night]
|
2020-04-29 17:44:31 +02:00
|
|
|
|
|
|
|
# Communication SMS features config, TYPES and FEATURES keys need to match
|
2020-06-24 00:29:01 +02:00
|
|
|
MESSAGES:
|
|
|
|
COMPUTE: True
|
|
|
|
DB_TABLE: messages
|
2020-04-29 17:44:31 +02:00
|
|
|
TYPES : [received, sent]
|
|
|
|
FEATURES:
|
2020-06-26 18:20:47 +02:00
|
|
|
received: [count, distinctcontacts, timefirstmessage, timelastmessage, countmostfrequentcontact]
|
|
|
|
sent: [count, distinctcontacts, timefirstmessage, timelastmessage, countmostfrequentcontact]
|
2020-04-29 17:44:31 +02:00
|
|
|
DAY_SEGMENTS: *day_segments
|
2020-06-04 01:42:12 +02:00
|
|
|
|
|
|
|
# Communication call features config, TYPES and FEATURES keys need to match
|
|
|
|
CALLS:
|
2020-06-24 00:29:01 +02:00
|
|
|
COMPUTE: True
|
|
|
|
DB_TABLE: calls
|
2020-06-04 01:42:12 +02:00
|
|
|
TYPES: [missed, incoming, outgoing]
|
|
|
|
FEATURES:
|
|
|
|
missed: [count, distinctcontacts, timefirstcall, timelastcall, countmostfrequentcontact]
|
|
|
|
incoming: [count, distinctcontacts, meanduration, sumduration, minduration, maxduration, stdduration, modeduration, entropyduration, timefirstcall, timelastcall, countmostfrequentcontact]
|
|
|
|
outgoing: [count, distinctcontacts, meanduration, sumduration, minduration, maxduration, stdduration, modeduration, entropyduration, timefirstcall, timelastcall, countmostfrequentcontact]
|
|
|
|
DAY_SEGMENTS: *day_segments
|
2020-06-17 22:23:00 +02:00
|
|
|
|
|
|
|
SCREEN:
|
2020-06-24 00:29:01 +02:00
|
|
|
COMPUTE: True
|
|
|
|
DB_TABLE: screen
|
2020-06-17 22:23:00 +02:00
|
|
|
DAY_SEGMENTS: *day_segments
|
|
|
|
REFERENCE_HOUR_FIRST_USE: 0
|
|
|
|
FEATURES_DELTAS: ["countepisode", "episodepersensedminutes", "sumduration", "maxduration", "minduration", "avgduration", "stdduration", "firstuseafter"]
|
|
|
|
EPISODE_TYPES: ["unlock"]
|
2020-07-01 22:34:47 +02:00
|
|
|
|
|
|
|
BATTERY:
|
|
|
|
COMPUTE: True
|
|
|
|
DB_TABLE: battery
|
|
|
|
DAY_SEGMENTS: *day_segments
|
|
|
|
FEATURES: ["countdischarge", "sumdurationdischarge", "countcharge", "sumdurationcharge", "avgconsumptionrate", "maxconsumptionrate"]
|
2020-07-07 00:11:28 +02:00
|
|
|
|
|
|
|
BLUETOOTH:
|
|
|
|
COMPUTE: True
|
|
|
|
DB_TABLE: bluetooth
|
|
|
|
DAY_SEGMENTS: *day_segments
|
2020-07-07 23:15:32 +02:00
|
|
|
FEATURES: ["countscans", "uniquedevices", "countscansmostuniquedevice"]
|
|
|
|
|
|
|
|
WIFI:
|
|
|
|
COMPUTE: True
|
|
|
|
DB_TABLE: wifi
|
|
|
|
DAY_SEGMENTS: *day_segments
|
|
|
|
FEATURES: ["countscans", "uniquedevices", "countscansmostuniquedevice"]
|