-
Notifications
You must be signed in to change notification settings - Fork 0
/
data-quality-and-summary.json
272 lines (272 loc) · 8.86 KB
/
data-quality-and-summary.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
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
{
"name": "Data Quality and Summary",
"description": "Validating the data quality and generate summary statistics reports.",
"downloads": [{
"type": "PNG",
"path": "data-quality-and-summary/assets/data-quality-and-summary.png"
},
{
"type": "PDF",
"path": "data-quality-and-summary/assets/data-quality-and-summary.pdf"
}
],
"workflow": [{
"id": "rows-columns",
"name": "Rows and Columns",
"description": "The questions to be answered serve as guides in EDA",
"steps": [{
"id": "rows-columns--rows",
"name": "Rows",
"description": null,
"steps": [{
"id": "rows-columns--rows--descriptions",
"name": "Descriptions",
"description": "What does the row mean?"
},
{
"id": "rows-columns--rows--count",
"name": "Count",
"description": null
}
]
},
{
"id": "rows-columns--columns",
"name": "Columns",
"description": null,
"steps": [{
"id": "rows-columns--columns--descriptions",
"name": "Descriptions",
"description": "What does the column mean?"
},
{
"id": "rows-columns--columns--count",
"name": "Count",
"description": "How many columns?"
},
{
"id": "rows-columns--columns--limits",
"name": "Possible values or ranges",
"description": "List the theoretical limits on the values and validate against the data."
}
]
}
]
},
{
"id": "types-formats",
"name": "Types and Formats",
"description": null,
"steps": [{
"id": "types-formats--datatypes",
"name": "Data Types",
"description": "What is each column consists of?",
"steps": [{
"id": "types-formats--datatypes--types",
"name": "Types of data",
"description": "Ordinal, Nominal, Interval, Generative, etc"
},
{
"id": "types-formats--datatypes--consistent",
"name": "Is the type of the data correct"
}
]
},
{
"id": "types-formats--formats",
"name": "Data Formats",
"description": null,
"steps": [{
"id": "types-formats--formats--dates",
"name": "Are the dates loaded as dates?",
"description": null
},
{
"id": "types-formats--formats--numbers",
"name": "Are the numbers loaded as numbers?",
"description": "Are they strings?"
},
{
"id": "types-formats--formats--financial",
"name": "Are the financial values correct?",
"description": "Are they strings or numbers? EU format, US format?"
}
]
}
]
},
{
"id": "missing",
"name": "Missing Values",
"description": "Are there missing values in each column",
"steps": [{
"id": "missing--notation",
"name": "Different types of missing values",
"description": "Notations of missing values are different in different datasets. Read the documentation of the dataset to find out.",
"steps": [{
"id": "missing--notation--standard",
"name": "Standard missing values",
"description": "nan, nat, None, na, null..."
},
{
"id": "missing--notation--filled",
"name": "Represented with a specific value",
"description": "-1, 0, MISSING, ..."
}
]
},
{
"id": "missing--percentage",
"name": "Percentage of missing values in each column",
"description": null
},
{
"id": "missing--visualization",
"name": "Visualizations",
"description": "e.g., missingno python package"
}
]
},
{
"id": "duplications",
"name": "Duplications",
"description": "Are there duplications of rows/columns?",
"steps": [{
"id": "duplications--validate",
"name": "Validate by yourself",
"description": "Do not trust the metadata and documentation of the dataset. Duplications of fields may occur when the documentation says they are unique."
}]
},
{
"id": "distributions",
"name": "Distributions",
"description": null,
"steps": [{
"id": "distributions--generation",
"name": "What is the generation process?",
"description": null,
"steps": [{
"id": "distributions--generation--eg-hist",
"name": "Is it a histogram analysis of another row?",
"description": null
},
{
"id": "distributions--generation--eg-comb",
"name": "Is it a linear combination of other rows?",
"description": null
}
]
},
{
"id": "distributions--visualize",
"name": "Visualize the distributions of the values",
"description": "Know all the values",
"steps": [{
"id": "distributions--values--valuecount",
"name": "Value count bar plot",
"description": "For descrete data, list all possible values and counts"
},
{
"id": "distributions--values--hist-kde",
"name": "Histogram and KDE",
"description": "for continuous data, use histograms or KDE."
},
{
"id": "distributions--values--boxplot",
"name": "Boxplot",
"description": "Boxplot is easier to understand for business people"
},
{
"id": "distributions--values--scatter",
"name": "Scatter plot",
"description": "Gut feeling of where the data points are located"
},
{
"id": "distributions--values--contour",
"name": "Contour plot",
"description": null
}
]
},
{
"id": "distributions--summary",
"name": "Numerical Summarization",
"description": "Use summary statistics to find out the moments.",
"steps": [{
"id": "distributions--summary--locations",
"name": "Locations",
"description": "Mean, median, quartiles, mode..."
},
{
"id": "distributions--summary--spreads",
"name": "Spreads",
"description": "range, variance, standard deviation, IQR"
},
{
"id": "distributions--summary--skewness",
"name": "Skewness",
"description": "asymmetries"
},
{
"id": "distributions--summary--kurtosis",
"name": "Kurtosis",
"description": null
}
]
}
]
},
{
"id": "corr-sim",
"name": "Correlations, Similarities",
"description": null,
"steps": [{
"id": "corr-sim--pairplot",
"name": "Pairplot",
"description": null
},
{
"id": "corr-sim--correlations",
"name": "Correlations",
"description": "Pearson, Kendall Tau Correlation"
},
{
"id": "corr-sim--distances",
"name": "Distances",
"description": "Calculate the distance between features or rows to understand the relations between them; Euclidean distance, Mahalanobis distance, Minkowski distance, Jaccard distance, ..."
}
]
},
{
"id": "size",
"name": "Size",
"description": "How much space will the data take on our storage device?",
"steps": [{
"id": "size--memory",
"name": "Memory usage",
"description": "To estimate the hardware requirements when deploying the model"
},
{
"id": "size--by-formats",
"name": "Storage on Hard Drive in Different Formats",
"description": "How much space will the dataset take in different formats?"
}
]
},
{
"id": "combine",
"name": "Combining Data Files",
"description": "One dataset may come in different files, combine them carefully.",
"steps": [{
"id": "combine--concat",
"name": "Concat",
"description": "The files should be concated with caution.",
"steps": [{
"id": "combine--concat--overlap",
"name": "Validate overlap",
"description": "Check if there is an overlap between the files."
}]
}]
}
]
}