-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathexample.json
More file actions
43 lines (43 loc) · 1.37 KB
/
example.json
File metadata and controls
43 lines (43 loc) · 1.37 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
{
"xlsFile": "example.xls",
"sheetName": "Sheet1",
"output-dir": "example-outputs/",
"questions": [
{
"question": "What is your favorite type of pizza?",
"id": "fav_pizza",
"answers": ["Pepperoni", "Cheese", "Meatlovers"]
},
{
"question": "How would you rank your seasons? (1 is most favorite, 4 least favorite)",
"id": "seasons_rank",
"answers": ["Spring", "Summer", "Autumn", "Winter"],
"format": "ranked"
},
{
"question": "What breakfast cereals do you like? (select all that apply)",
"id": "cereal_weeee",
"answers": ["Honey Nut Cheerios", "Fruit loops", "Lucky Charms"],
"format": "select-all"
}
],
"analysis": [
{
"title": "People Who Like Cheerios's Favorite Pizzas",
"x-axis": "Pizza type",
"y-axis": "Number of people who like this pizza",
"save-as": "cheerio_lovers_fav_pizzas.jpg",
"config": {
"id": "fav_pizza",
"filters": [
{
"id": "cereal_weeee",
"answers": [0]
}
],
"percentage": false
},
"bars": ["Pep.", "Cheese", "Meat"]
}
]
}