-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathschema.json
50 lines (50 loc) · 1.24 KB
/
schema.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
[
{
"distinct_count": 10,
"distinct_percentage": 100.0,
"format": "default",
"max": 10.0,
"min": 1.0,
"missing_count": 1,
"missing_percentage": 9.09,
"ml_type": "numeric",
"most_frequent": 10.0,
"name": "column_int",
"type": "integer"
},
{
"distinct_count": 10,
"distinct_percentage": 100.0,
"format": "default",
"max": 10.05,
"min": 1.05,
"missing_count": 1,
"missing_percentage": 9.09,
"ml_type": "numeric",
"most_frequent": 6.05,
"name": "column_float",
"type": "number"
},
{
"distinct_count": 2,
"distinct_percentage": 20.0,
"format": "default",
"missing_count": 1,
"missing_percentage": 9.09,
"ml_type": "open_text",
"most_frequent": "sample text2",
"name": "column_text",
"type": "string"
},
{
"distinct_count": 10,
"distinct_percentage": 100.0,
"format": "default",
"missing_count": 1,
"missing_percentage": 9.09,
"ml_type": "date",
"most_frequent": "8/2/2019 18:30",
"name": "column_date_time",
"type": "date"
}
]