Skip to content

Commit 81f7188

Browse files
committed
adds all
1 parent 0decffb commit 81f7188

File tree

3 files changed

+46
-6524
lines changed

3 files changed

+46
-6524
lines changed

ADV 2025/2/ADBF/TIDY.xlsx

5.21 KB
Binary file not shown.

ADV 2025/2/ADBF/spec.json

Lines changed: 46 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,46 @@
1+
// JSON JavaScript Object Notation
2+
3+
// Object
4+
// kulcs-érték párok / key-value pairs
5+
// a = {"kulcs1": 647, "gdg": 56, "harmadik": [{"a":1,"b":4}, {...}] }
6+
// a["gdg"] = 56, a["haramdik"][0]["a"] = 1
7+
// JavaScript: Object
8+
// python: dictionary / dict
9+
// C++: record
10+
// szótár
11+
// hash-table
12+
13+
// Array
14+
// a = [1, 3, 7, 9, 0]
15+
// a[1]
16+
// a.push(6)
17+
// a = [1, 3, 7, 9, 0, 6]
18+
// JavaScript: Array
19+
// python: list
20+
// C++: vector
21+
// Matlab: 1-D matrix
22+
// [1, 3, 7, 9, 0, 6, "auto", [2, 3] ]
23+
24+
// CTRL + / kommentelek
25+
26+
{
27+
"$schema": "https://vega.github.io/schema/vega-lite/v5.json",
28+
"description": "A simple bar chart with embedded data.",
29+
"data": {
30+
"values":
31+
// JOA JavaScript Object Array - TIDY
32+
[
33+
{"a": "A", "b": 28, "re":{}},
34+
{"a": "B", "b": 55},
35+
{"a": "G", "b": 19},
36+
{"a": "C", "b": 43},
37+
{"a": "H", "b": 87},
38+
{"a": "I", "b": 52}
39+
]
40+
},
41+
"mark": "bar",
42+
"encoding": {
43+
"x": {"field": "a", "type": "nominal","sort":[]},
44+
"y": {"field": "b", "type": "quantitative"}
45+
}
46+
}

0 commit comments

Comments
 (0)