-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathdefaultStudyConfig.js
More file actions
76 lines (76 loc) · 3.15 KB
/
defaultStudyConfig.js
File metadata and controls
76 lines (76 loc) · 3.15 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
var configs = {};
configs.colormap = [
{
category : "daily_survey",
analysis : "timestamp",
variable : "daily_surveyAnswers_hours_since_1",
label : "daily_survey",
range : [0, 24],
color : ["#ffffd9", "#edf8b1", "#c7e9b4", "#7fcdbb", "#41b6c4", "#1d91c0", "#225ea8", "#253494", "#081d58"],
text: true
},
{
category : "daily_survey",
analysis : "questionnaireStat",
variable : "DAILY_1_NUM_UNANSWERED",
label : "unanswered_num",
range : [0, 10],
color : ["#ffffd9", "#edf8b1", "#c7e9b4", "#7fcdbb", "#41b6c4", "#1d91c0", "#225ea8", "#253494", "#081d58"],
text: true
},
{
category : "voice",
analysis : "timestamp",
variable : "daily_voiceRecording_hours_since_1",
label : "daily_voice",
range : [0, 24],
color : ["#ffffd9", "#edf8b1", "#c7e9b4", "#7fcdbb", "#41b6c4", "#1d91c0", "#225ea8", "#253494", "#081d58"],
text: true
},
{
category : "weekly_survey",
analysis : "timestamp",
variable : "weekly_surveyAnswers_hours_since_1",
label : "weekly_survey",
range : [0, 24],
color : ["#ffffd9", "#edf8b1", "#c7e9b4", "#7fcdbb", "#41b6c4", "#1d91c0", "#225ea8", "#253494", "#081d58"],
text: true
},
{
category : "weekly_survey",
analysis : "questionnaireStat",
variable : "WEEKLY_1_NUM_UNANSWERED",
label : "unanswered_num",
range : [0, 10],
color : ["#ffffd9", "#edf8b1", "#c7e9b4", "#7fcdbb", "#41b6c4", "#1d91c0", "#225ea8", "#253494", "#081d58"],
text: true
},
{
category : "actigraphy",
analysis : "Geneactivwrist",
variable : "button",
label : "button",
range : [10, 50],
color : ["#ffffd9", "#edf8b1", "#c7e9b4", "#7fcdbb", "#41b6c4", "#1d91c0", "#225ea8", "#253494", "#081d58"],
text: true
},
{
category : "balancesheet",
analysis : "balancesheetGps",
variable : "gps_count",
label : "gps_file_count",
range : [0, 24],
color : ["#ffffd9", "#edf8b1", "#c7e9b4", "#7fcdbb", "#41b6c4", "#1d91c0", "#225ea8", "#253494", "#081d58"],
text : true
},
{
category : "balancesheet",
analysis : "balancesheetAccel",
variable : "accel_count",
label : "accel_file_count",
range : [0, 24],
color : ["#ffffd9", "#edf8b1", "#c7e9b4", "#7fcdbb", "#41b6c4", "#1d91c0", "#225ea8", "#253494", "#081d58"],
text : true
}
];
module.exports = configs;