Update docs of creating participant files section
parent
e177aa6386
commit
7d175030c6
|
@ -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: []
|
||||||
```
|
```
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue