Felix Englisch: Unterschied zwischen den Versionen
Aus Lünepedia
(10 dazwischenliegende Versionen desselben Benutzers werden nicht angezeigt) | |||
Zeile 89: | Zeile 89: | ||
</graph> | </graph> | ||
Wahl zum Stadtrat der Hansestadt Lüneburg 2021 (Wahlbeteiligung 56,2 %)</div> | Wahl zum Stadtrat der Hansestadt Lüneburg 2021 (Wahlbeteiligung 56,2 %)</div> | ||
== noch eins == | |||
<graph>{ | |||
"$schema": "https://vega.github.io/schema/vega-lite/v5.json", | |||
"description": "A simple pie chart with labels.", | |||
"data": { | |||
"values": [ | |||
{"category": "a", "value": 4}, | |||
{"category": "b", "value": 6}, | |||
{"category": "c", "value": 10}, | |||
{"category": "d", "value": 3}, | |||
{"category": "e", "value": 7}, | |||
{"category": "f", "value": 8} | |||
] | |||
}, | |||
"encoding": { | |||
"theta": {"field": "value", "type": "quantitative", "stack": true}, | |||
"color": {"field": "category", "type": "nominal", "legend": null} | |||
}, | |||
"layer": [{ | |||
"mark": {"type": "arc", "outerRadius": 80} | |||
}, { | |||
"mark": {"type": "text", "radius": 90}, | |||
"encoding": { | |||
"text": {"field": "category", "type": "nominal"} | |||
} | |||
}] | |||
} | |||
</graph> | |||
== Zweites Diagramm == | == Zweites Diagramm == | ||
Zeile 187: | Zeile 217: | ||
</graph> | </graph> | ||
== Weiteres Diagramm == | |||
<graph>{ | |||
"version": 2, | |||
"width": 400, | |||
"height": 200, | |||
"data": [ | |||
{ | |||
"name": "table", | |||
"values": [ | |||
{ | |||
"x": 0, | |||
"y": 1 | |||
}, | |||
{ | |||
"x": 1, | |||
"y": 3 | |||
}, | |||
{ | |||
"x": 2, | |||
"y": 4 | |||
}, | |||
{ | |||
"x": 3, | |||
"y": 24 | |||
}, | |||
{ | |||
"x": 4, | |||
"y": 21 | |||
}, | |||
{ | |||
"x": 5, | |||
"y": 22 | |||
} | |||
] | |||
} | |||
], | |||
"scales": [ | |||
{ | |||
"name": "x", | |||
"type": "linear", | |||
"range": "width", | |||
"zero": false, | |||
"domain": { | |||
"data": "table", | |||
"field": "x" | |||
} | |||
}, | |||
{ | |||
"name": "y", | |||
"type": "linear", | |||
"range": "height", | |||
"nice": true, | |||
"domain": { | |||
"data": "table", | |||
"field": "y" | |||
} | |||
} | |||
], | |||
"axes": [ | |||
{ | |||
"type": "x", | |||
"scale": "x" | |||
}, | |||
{ | |||
"type": "y", | |||
"scale": "y" | |||
} | |||
], | |||
"marks": [ | |||
{ | |||
"type": "line", | |||
"from": { | |||
"data": "table" | |||
}, | |||
"properties": { | |||
"enter": { | |||
"x": { | |||
"scale": "x", | |||
"field": "x" | |||
}, | |||
"y": { | |||
"scale": "y", | |||
"field": "y" | |||
}, | |||
"y2": { | |||
"scale": "y", | |||
"value": 0 | |||
}, | |||
"interpolate": { | |||
"value": "monotone" | |||
}, | |||
"stroke": { | |||
"value": "steelblue" | |||
}, | |||
"strokeWidth": { | |||
"value": 3 | |||
} | |||
} | |||
} | |||
} | |||
] | |||
}</graph> | |||
== Testgelände == | |||
<graph>{ | |||
"version": 2, | |||
"width": 400, | |||
"height": 200, | |||
"data": [ | |||
{ | |||
"name": "table", | |||
"values": [ | |||
{ | |||
"x": 0, | |||
"y": 1 | |||
}, | |||
{ | |||
"x": 1, | |||
"y": 3 | |||
}, | |||
{ | |||
"x": 2, | |||
"y": 2 | |||
}, | |||
{ | |||
"x": 3, | |||
"y": 4 | |||
} | |||
] | |||
} | |||
], | |||
"scales": [ | |||
{ | |||
"name": "x", | |||
"type": "linear", | |||
"range": "width", | |||
"zero": false, | |||
"domain": { | |||
"data": "table", | |||
"field": "x" | |||
} | |||
}, | |||
{ | |||
"name": "y", | |||
"type": "linear", | |||
"range": "height", | |||
"nice": true, | |||
"domain": { | |||
"data": "table", | |||
"field": "y" | |||
} | |||
} | |||
], | |||
"axes": [ | |||
{ | |||
"type": "x", | |||
"scale": "x" | |||
}, | |||
{ | |||
"type": "y", | |||
"scale": "y" | |||
} | |||
], | |||
"marks": [ | |||
{ | |||
"type": "area", | |||
"from": { | |||
"data": "table" | |||
}, | |||
"properties": { | |||
"enter": { | |||
"x": { | |||
"scale": "x", | |||
"field": "x" | |||
}, | |||
"y": { | |||
"scale": "y", | |||
"field": "y" | |||
}, | |||
"y2": { | |||
"scale": "y", | |||
"value": 0 | |||
}, | |||
"fill": { | |||
"value": "steelblue" | |||
}, | |||
"interpolate": { | |||
"value": "monotone" | |||
} | |||
} | |||
} | |||
} | |||
] | |||
}</graph> | |||
== Tortendiagramm == | |||
<graph> | |||
< | |||
{ | { | ||
"version": 2, | "version": 2, | ||
"width": | "width": 100, | ||
"height": | "height": 100, | ||
"data": [ | "data": [ | ||
{ | { | ||
"name": " | "name": "table", | ||
" | "values": [12,23,47,6,52,19], | ||
"transform": [{"type": "pie","field": "data"}] | |||
"transform": [ | |||
} | } | ||
], | ], | ||
"scales": [ | "scales": [ | ||
{ | { | ||
"name": " | "name": "r", | ||
"type": " | "type": "sqrt", | ||
"domain": {"data": "table","field": "data"}, | |||
"range": [100,100] | |||
"domain": {"data": " | |||
"range": | |||
} | } | ||
], | ], | ||
"marks": [ | "marks": [ | ||
{ | { | ||
" | "type": "arc", | ||
" | "from": {"data": "table"}, | ||
"properties": { | "properties": { | ||
"enter": { | "enter": { | ||
"x": {" | "x": {"field": {"group": "width"},"mult": 0.5}, | ||
"y": {" | "y": {"field": {"group": "height"},"mult": 0.5}, | ||
" | "startAngle": {"field": "layout_start"}, | ||
" | "endAngle": {"field": "layout_end"}, | ||
" | "innerRadius": {"value": 20}, | ||
"outerRadius": {"scale": "r","field": "data"}, | |||
"stroke": {"value": "#fff"} | |||
}, | }, | ||
"update": {" | "update": {"fill": {"value": "#ccc"} }, | ||
"hover": {"fill": {"value": "pink"} } | |||
} | } | ||
}, | }, | ||
{ | { | ||
" | "type": "text", | ||
" | "from": {"data": "table"}, | ||
"properties": { | "properties": { | ||
"enter": { | "enter": { | ||
"x": {" | "x": {"field": {"group": "width"},"mult": 0.5}, | ||
"y": {" | "y": {"field": {"group": "height"},"mult": 0.5}, | ||
" | "radius": {"scale": "r","field": "data","offset": 8}, | ||
" | "theta": {"field": "layout_mid"}, | ||
" | "fill": {"value": "#000"}, | ||
"align": {"value": "center"}, | |||
"baseline": {"value": "middle"}, | |||
"text": {"field": "data"} | |||
} | } | ||
} | } | ||
} | } | ||
] | ] | ||
} | } | ||
</graph> | </graph> |
Aktuelle Version vom 29. November 2021, 22:59 Uhr
Willkommen auf meiner Benutzer*innenseite. Ich bin Felix, der dieses Stadtwiki von technischer Seite her konfiguriert hat. Gemeinsam mit Benutzer:Klarambolage und Benutzer:Mira haben wir Lünepedia initiiert und sind sehr gespannt, wie es sich entwickelt.
Kurz über mich: Ich studiere an der Leuphana einen Mix aus Nachhaltigkeitswissenschaften, Ökonomik und Politikwissenschaften im Rahmen des Studium Individuale. Inzwischen bin ich bereits im 6. Semester meines Bachelor-Studiums, aber habe nicht vor, Lüneburg danach einfach zu verlassen. Den Großteil meiner Zeit stecke ich in die Initiative Lebendiges Lüneburg und bin auch anderweitig politisch und klimaaktivistisch aktiv.
Spielplatz[Bearbeiten | Quelltext bearbeiten]
Überschrift
Wahl zum Stadtrat der Hansestadt Lüneburg 2021 (Wahlbeteiligung 56,2 %)