-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdatapackage.json
85 lines (85 loc) · 2.41 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
77
78
79
80
81
82
83
84
85
{
"name": "stdlib-datasets-nightingales-rose",
"version": "",
"title": "Nightingale's Rose",
"description": "Dataset for Nightingale's famous polar area diagram.",
"resources": [
{
"name": "nightingales-rose-json",
"title": "Nightingale's Rose",
"description": "Dataset for Nightingale's famous polar area diagram.",
"format": "json",
"mediatype": "application/json",
"encoding": "UTF-8",
"hash": "",
"path": "./data/data.json"
},
{
"name": "nightingales-rose-csv",
"title": "Nightingale's Rose",
"description": "Dataset for Nightingale's famous polar area diagram.",
"format": "csv",
"mediatype": "text/csv",
"encoding": "UTF-8",
"hash": "",
"path": "./data/data.csv",
"schema": {
"fields": [
{
"name": "date",
"title": "Month",
"description": "Month and year in which data was recorded.",
"type": "date",
"format": "default"
},
{
"name": "army_size",
"title": "Size of Army",
"description": "Total number of soldiers.",
"type": "integer",
"format": "default"
},
{
"name": "disease",
"title": "Deaths Due to Disease",
"description": "Number of soldier deaths attributed to disease.",
"type": "integer",
"format": "default"
},
{
"name": "wounds",
"title": "Deaths Due to Wounds",
"description": "Number of soldier deaths attributed to wounds sustained in battle.",
"type": "integer",
"format": "default"
},
{
"name": "other",
"title": "Deaths Due to Other Causes",
"description": "Number of soldier deaths attributed to other causes.",
"type": "integer",
"format": "default"
}
]
}
}
],
"sources": [
{
"name": "A contribution to the sanitary history of the British army during the late war with Russia",
"web": "https://curiosity.lib.harvard.edu/contagion/catalog/36-990101646750203941"
}
],
"keywords": [
"nightingale",
"florence",
"polar area",
"chart",
"rose",
"coxcomb",
"crimean war",
"statistics",
"stats"
],
"license": "PDDL-1.0 AND CC0-1.0"
}