From 7d175030c63bb7cf890162f7c3a946a7e59a2aca Mon Sep 17 00:00:00 2001 From: Meng Li <34143965+Meng6@users.noreply.github.com> Date: Thu, 25 Mar 2021 11:50:21 -0400 Subject: [PATCH] Update docs of creating participant files section --- docs/setup/configuration.md | 8 ++------ 1 file changed, 2 insertions(+), 6 deletions(-) diff --git a/docs/setup/configuration.md b/docs/setup/configuration.md index 8d030578..2e25c9e9 100644 --- a/docs/setup/configuration.md +++ b/docs/setup/configuration.md @@ -111,22 +111,18 @@ In your `config.yaml`: 1. Set `CSV_FILE_PATH` to a CSV file path that complies with the specs described below 2. Set the devices (`PHONE`, `FITBIT`, `EMPATICA`) `[ADD]` flag to `TRUE` depending on what devices you used in your study. -3. Set `[DEVICE_ID_COLUMN]` to the column's name in your CSV file that uniquely identifies each device. ```yaml CREATE_PARTICIPANT_FILES: CSV_FILE_PATH: "your_path/to_your.csv" PHONE_SECTION: ADD: TRUE # or FALSE - DEVICE_ID_COLUMN: device_id # column name IGNORED_DEVICE_IDS: [] FITBIT_SECTION: - ADD: FALSE # or FALSE - DEVICE_ID_COLUMN: fitbit_id # column name + ADD: TRUE # or FALSE IGNORED_DEVICE_IDS: [] EMPATICA_SECTION: - ADD: FALSE - DEVICE_ID_COLUMN: empatica_id # column name + ADD: TRUE # or FALSE IGNORED_DEVICE_IDS: [] ```