rapids/rules/features.snakefile

99 lines
3.0 KiB
Plaintext
Raw Normal View History

rule sms_metrics:
2019-10-24 22:27:43 +02:00
input:
"data/raw/{pid}/messages_with_datetime.csv"
params:
sms_type = "{sms_type}",
day_segment = "{day_segment}",
metrics = lambda wildcards: config["SMS"]["METRICS"][wildcards.sms_type]
2019-10-24 22:27:43 +02:00
output:
"data/processed/{pid}/sms_{sms_type}_{day_segment}.csv"
2019-10-24 22:27:43 +02:00
script:
"../src/features/sms_metrics.R"
2019-10-25 16:21:09 +02:00
rule call_metrics:
2019-10-25 16:21:09 +02:00
input:
2019-11-12 21:12:43 +01:00
"data/raw/{pid}/calls_with_datetime_unified.csv"
2019-10-25 16:21:09 +02:00
params:
call_type = "{call_type}",
day_segment = "{day_segment}",
metrics = lambda wildcards: config["CALLS"]["METRICS"][wildcards.call_type]
2019-10-25 16:21:09 +02:00
output:
"data/processed/{pid}/call_{call_type}_{day_segment}.csv"
2019-10-25 16:21:09 +02:00
script:
2019-11-06 21:43:41 +01:00
"../src/features/call_metrics.R"
2019-11-05 16:47:55 +01:00
rule battery_deltas:
input:
"data/raw/{pid}/battery_with_datetime.csv"
output:
"data/processed/{pid}/battery_deltas.csv"
script:
2019-11-05 21:17:20 +01:00
"../src/features/battery_deltas.R"
2019-11-27 21:27:48 +01:00
rule screen_deltas:
input:
"data/raw/{pid}/screen_with_datetime.csv"
output:
"data/processed/{pid}/screen_deltas.csv"
script:
"../src/features/screen_deltas.R"
2019-11-05 21:17:20 +01:00
rule location_barnett_metrics:
input:
"data/raw/{pid}/locations_with_datetime.csv"
params:
accuracy_limit = config["BARNETT_LOCATION"]["ACCURACY_LIMIT"],
timezone = config["BARNETT_LOCATION"]["TIMEZONE"]
output:
"data/processed/{pid}/location_barnett.csv"
2019-11-05 21:17:20 +01:00
script:
2019-11-06 18:19:30 +01:00
"../src/features/location_barnett_metrics.R"
rule bluetooth_metrics:
input:
"data/raw/{pid}/bluetooth_with_datetime.csv"
params:
day_segment = "{day_segment}",
metrics = config["BLUETOOTH"]["METRICS"]
output:
"data/processed/{pid}/bluetooth_{day_segment}.csv"
script:
"../src/features/bluetooth_metrics.R"
rule activity_metrics:
input:
"data/raw/{pid}/plugin_google_activity_recognition_with_datetime.csv"
2019-11-18 20:22:08 +01:00
params:
segment = "{day_segment}",
metrics = config["GOOGLE_ACTIVITY_RECOGNITION"]["METRICS"]
output:
2019-11-18 20:22:08 +01:00
"data/processed/{pid}/google_activity_recognition_{day_segment}.csv"
script:
"../src/features/google_activity_recognition.py"
rule battery_metrics:
input:
"data/processed/{pid}/battery_deltas.csv"
params:
day_segment = "{day_segment}",
metrics = config["BATTERY"]["METRICS"]
output:
"data/processed/{pid}/battery_{day_segment}.csv"
script:
"../src/features/battery_metrics.py"
2019-11-27 20:25:17 +01:00
rule screen_metrics:
input:
screen_events = "data/raw/{pid}/screen_with_datetime.csv",
screen_deltas = "data/processed/{pid}/screen_deltas.csv"
params:
day_segment = "{day_segment}",
metrics_event = config["SCREEN"]["METRICS_EVENT"],
metrics_episode = config["SCREEN"]["METRICS_EPISODE"],
episodes = config["SCREEN"]["EPISODES"]
output:
"data/processed/{pid}/screen_{day_segment}.csv"
script:
"../src/features/screen_metrics.py"