forked from datasets/breast-cancer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
datapackage.json
94 lines (94 loc) · 3.33 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
86
87
88
89
90
91
92
93
94
{
"title": "Breast cancer",
"name": "breast-cancer",
"sources": [
{
"title": "OpenML - breast-cancer",
"path": "https://www.openml.org/d/13"
}
],
"licences": [
{
"name": "odc-pddl",
"title": "Open Data Commons Public Domain Dedication and Licence (PDDL)",
"path": "http://opendatacommons.org/licenses/pddl/"
}
],
"resources": [
{
"path": "data/breast-cancer.csv",
"profile": "tabular-data-resource",
"encoding": "utf-8",
"name": "breast-cancer",
"format": "csv",
"mediatype": "text/csv",
"schema": {
"fields": [
{
"name": "age",
"type": "string",
"format": "default",
"description": "10-19, 20-29, 30-39, 40-49, 50-59, 60-69, 70-79, 80-89, 90-99."
},
{
"name": "mefalsepause",
"type": "string",
"format": "default",
"description": "lt40, ge40, premeno"
},
{
"name": "tumor-size",
"type": "string",
"format": "default",
"description": "0-4, 5-9, 10-14, 15-19, 20-24, 25-29, 30-34, 35-39, 40-44, 45-49, 50-54, 55-59"
},
{
"name": "inv-falsedes",
"type": "string",
"format": "default",
"description": "0-2, 3-5, 6-8, 9-11, 12-14, 15-17, 18-20, 21-23, 24-26, 27-29, 30-32, 33-35, 36-39"
},
{
"name": "falsede-caps",
"type": "boolean",
"format": "default",
"description": "yes, no"
},
{
"name": "deg-malig",
"type": "integer",
"format": "default",
"description": "1, 2, 3"
},
{
"name": "breast",
"type": "string",
"format": "default",
"description": "left, right"
},
{
"name": "breast-quad",
"type": "string",
"format": "default",
"description": "left-up, left-low, right-up, right-low, central"
},
{
"name": "irradiat",
"type": "boolean",
"format": "default",
"description": "yes, no"
},
{
"name": "class",
"type": "string",
"format": "default",
"description": "no-recurrence-events, recurrence-events"
}
],
"missingValues": [
""
]
}
}
]
}