-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
datapackage.json
97 lines (97 loc) · 2.74 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
95
96
97
{
"name": "stdlib-datasets-anscombes-quartet",
"version": "",
"title": "Anscombe's Quartet",
"description": "Anscombe's quartet is a set of 4 datasets which all have nearly identical simple statistical properties but vary considerably when graphed. Anscombe created the datasets to demonstrate why graphical data exploration should precede statistical data analysis and to show the effect of outliers on statistical properties.",
"resources": [
{
"name": "anscombes-quartet-json",
"title": "Anscombe's Quartet",
"description": "Anscombe's quartet.",
"format": "json",
"mediatype": "application/json",
"encoding": "UTF-8",
"hash": "",
"path": "./data/data.json"
},
{
"name": "anscombes-quartet-csv",
"title": "Anscombe's Quartet",
"description": "Anscombe's quartet.",
"format": "csv",
"mediatype": "text/csv",
"encoding": "UTF-8",
"hash": "",
"path": "./data/data.csv",
"schema": {
"fields": [
{
"name": "x1",
"title": "x1",
"description": "x-values for first dataset.",
"type": "number",
"format": "default"
},
{
"name": "y1",
"title": "y1",
"description": "y-values for first dataset.",
"type": "number",
"format": "default"
},
{
"name": "x2",
"title": "x2",
"description": "x-values for second dataset.",
"type": "number",
"format": "default"
},
{
"name": "y2",
"title": "y2",
"description": "y-values for second dataset.",
"type": "number",
"format": "default"
},
{
"name": "x3",
"title": "x3",
"description": "x-values for third dataset.",
"type": "number",
"format": "default"
},
{
"name": "y3",
"title": "y3",
"description": "y-values for third dataset.",
"type": "number",
"format": "default"
},
{
"name": "x4",
"title": "x4",
"description": "x-values for fourth dataset.",
"type": "number",
"format": "default"
},
{
"name": "y4",
"title": "y4",
"description": "y-values for fourth dataset.",
"type": "number",
"format": "default"
}
]
}
}
],
"sources": [],
"keywords": [
"anscombe",
"quartet",
"anscombes-quartet",
"statistics",
"stats"
],
"license": "PDDL-1.0 AND CC0-1.0"
}