Update docs of creating participant files section

pull/130/head
Meng Li 2021-03-25 11:50:21 -04:00
parent e177aa6386
commit 7d175030c6
1 changed files with 2 additions and 6 deletions

View File

@ -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 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. 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 ```yaml
CREATE_PARTICIPANT_FILES: CREATE_PARTICIPANT_FILES:
CSV_FILE_PATH: "your_path/to_your.csv" CSV_FILE_PATH: "your_path/to_your.csv"
PHONE_SECTION: PHONE_SECTION:
ADD: TRUE # or FALSE ADD: TRUE # or FALSE
DEVICE_ID_COLUMN: device_id # column name
IGNORED_DEVICE_IDS: [] IGNORED_DEVICE_IDS: []
FITBIT_SECTION: FITBIT_SECTION:
ADD: FALSE # or FALSE ADD: TRUE # or FALSE
DEVICE_ID_COLUMN: fitbit_id # column name
IGNORED_DEVICE_IDS: [] IGNORED_DEVICE_IDS: []
EMPATICA_SECTION: EMPATICA_SECTION:
ADD: FALSE ADD: TRUE # or FALSE
DEVICE_ID_COLUMN: empatica_id # column name
IGNORED_DEVICE_IDS: [] IGNORED_DEVICE_IDS: []
``` ```