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.
|
|
|
|
TABLES_FOR_SENSED_BINS: [messages, calls, screen]
|
2020-04-29 17:44:31 +02:00
|
|
|
|
2020-06-26 18:20:47 +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-23 02:47:56 +02:00
|
|
|
PIDS: [test01, test02]
|
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
|
|
|
|
2020-06-24 00:29:01 +02:00
|
|
|
|
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"]
|