forked from julietezekwe/obese-data
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdatapackage.json
76 lines (76 loc) · 1.78 KB
/
datapackage.json
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
{
"name": "obese-data",
"title": "Obese data",
"resources": [
{
"path": "obese_data.py",
"pathType": "local",
"name": "obese_data",
"format": "py",
"encoding": "ISO-8859-1"
},
{
"path": "data/data.csv",
"pathType": "local",
"name": "data",
"format": "csv",
"mediatype": "text/csv",
"encoding": "UTF-8",
"dialect": {
"delimiter": ",",
"quoteChar": "\""
},
"schema": {
"fields": [
{
"name": "Country",
"type": "string",
"format": "default"
},
{
"name": "Overall rank",
"type": "integer",
"format": "default"
},
{
"name": "Overall mean BMI (kg/m2)",
"type": "number",
"format": "default"
},
{
"name": "Female rank",
"type": "integer",
"format": "default"
},
{
"name": "Male rank",
"type": "number",
"format": "default"
},
{
"name": "Female mean BMI (kg/m2)",
"type": "integer",
"format": "default"
},
{
"name": "Male mean BMI (kg/m2)",
"type": "number",
"format": "default"
}
],
"missingValues": [
""
]
}
}
],
"readme": "# obese-data\nA dataset of country rank by average BMI count\n",
"description": "# obese-data\nA dataset of country rank by average BMI count\n",
"licenses": [
{
"name": "ODC-PDDL",
"path": "http://opendatacommons.org/licenses/pddl/",
"title": "Open Data Commons Public Domain Dedication and License"
}
]
}