andrefelipe-afos commited on
Commit
f843d84
·
0 Parent(s):

AFOS Germany 2025 Electoral Divergence — initial dataset

Browse files

Party-level: vote share (polls) vs probability of winning the most seats (market).
AfD ~21% vote but ~3% to win the plurality; CDU/CSU ~30% vote → ~97% to win, and
won. 349 polls + Polymarket + divergence. CC BY 4.0 + Apache 2.0. No personal data.

.gitattributes ADDED
@@ -0,0 +1 @@
 
 
1
+ *.png filter=lfs diff=lfs merge=lfs -text
.gitignore ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ node_modules/
2
+ *.html
3
+ .DS_Store
CITATION.cff ADDED
@@ -0,0 +1,28 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ cff-version: 1.2.0
2
+ message: "If you use this dataset, please cite it as below."
3
+ title: "AFOS — Germany 2025 Electoral Divergence Dataset"
4
+ abstract: >-
5
+ Open dataset cross-referencing opinion polls and prediction markets for Germany's
6
+ 2025 federal election (Bundestag, 23 February 2025), with explicit poll-versus-market
7
+ divergence rather than a blended average. Polls measure party vote share; the market
8
+ prices the probability of winning the most seats. The AfD held ~21% of the vote (second
9
+ party) yet only ~3% to win the plurality — vote share is not the same as winning, and
10
+ the spread is the signal. Poll figures compiled deterministically from public pollster
11
+ releases (via the Wikipedia aggregation); market odds from Polymarket.
12
+ type: dataset
13
+ authors:
14
+ - name: "AFOS Analytics"
15
+ website: "https://afos-analytics.com"
16
+ keywords:
17
+ - elections
18
+ - Germany
19
+ - opinion polls
20
+ - prediction markets
21
+ - divergence
22
+ - Europe
23
+ - open data
24
+ license: CC-BY-4.0
25
+ repository: "https://huggingface.co/datasets/AFOS-Analytics1/germany-2025-electoral-divergence"
26
+ url: "https://afos-analytics.com"
27
+ version: "2026.06"
28
+ date-released: "2026-06-11"
DATA_DICTIONARY.md ADDED
@@ -0,0 +1,60 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # Data Dictionary — AFOS Germany 2025 Electoral Divergence
2
+
3
+ Every file and column, with type, unit and provenance. **Party-level**: polls measure party vote share; the market prices the probability of winning the most seats. Values are never imputed or smoothed — missing values are left **blank**.
4
+
5
+ ---
6
+
7
+ ## `polls/germany-polls.csv`
8
+
9
+ Party vote-share polling, **long format** — one row per party × poll.
10
+
11
+ | Column | Type | Notes |
12
+ |--------|------|-------|
13
+ | `poll_date` | date | Fieldwork-end date (`YYYY-MM-DD`). |
14
+ | `fieldwork` | string | Fieldwork window as published. |
15
+ | `pollster` | string | Polling firm (Forsa, INSA, Infratest dimap, …). |
16
+ | `sample` | integer | Sample size; blank when not declared (thousands separators normalized). |
17
+ | `party` | string | Party (canonical): CDU/CSU, SPD, AfD, Grüne, Die Linke, FDP, BSW, Freie Wähler. |
18
+ | `party_full` | string | Full party name. |
19
+ | `percent` | number | Party vote-share intention, %. |
20
+
21
+ ## `polls/germany-polls.json`
22
+
23
+ Full structured polls (pollster, fieldwork, sample, per-party results). Deduplicated by (pollster, date), keeping the most complete row.
24
+
25
+ ---
26
+
27
+ ## `data/germany-market-odds-timeseries.csv`
28
+
29
+ Polymarket **"wins the most seats"** probability per party, daily, from the "Germany Parliamentary Election Winner" market.
30
+
31
+ | Column | Type | Notes |
32
+ |--------|------|-------|
33
+ | `date` | date | `YYYY-MM-DD`. |
34
+ | `party` | string | Canonical party name. |
35
+ | `polymarket_pct` | number | Implied probability of winning the most seats, %. |
36
+ | `volume_usd` | number | Cumulative traded volume for that party's market, USD. |
37
+
38
+ ## `data/germany-divergence-timeseries.csv`
39
+
40
+ **Market × poll divergence** per party — each poll's party vote share joined to that party's market odds on the poll's date (nearest **on or before**).
41
+
42
+ | Column | Type | Notes |
43
+ |--------|------|-------|
44
+ | `poll_date` | date | Poll date. |
45
+ | `pollster` | string | Polling firm. |
46
+ | `party` | string | Canonical party name. |
47
+ | `poll_pct` | number | Party vote share, %. |
48
+ | `polymarket_pct` | number | Market "wins most seats" probability on `polymarket_date`, %. |
49
+ | `polymarket_date` | date | Market date used (nearest on-or-before `poll_date`). |
50
+ | `divergence_pp` | number | `polymarket_pct − poll_pct`, percentage points. |
51
+
52
+ > **Interpretation caveat:** a poll reports *vote share*; the market prices *probability of winning the most seats*. The two are different quantities — `divergence_pp` is the spread AFOS tracks, **not** an error metric. A party (e.g. AfD) can hold a large vote share while its probability of winning the plurality is near zero; the gap is the signal.
53
+
54
+ ## `data/germany-poly-raw.json`
55
+
56
+ Raw Polymarket payload (event + per-party price histories), via a US-resolving function, kept for provenance.
57
+
58
+ ---
59
+
60
+ **Sources:** [Wikipedia — Opinion polling for the 2025 German federal election](https://en.wikipedia.org/wiki/Opinion_polling_for_the_2025_German_federal_election) · Polymarket "Germany Parliamentary Election Winner". Maintained by [AFOS Analytics](https://afos-analytics.com). CC BY 4.0.
LICENSE ADDED
@@ -0,0 +1,45 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ Creative Commons Attribution 4.0 International (CC BY 4.0)
2
+ =========================================================
3
+
4
+ The DATA in this dataset (CSV files, JSON snapshots, polls, and news-link
5
+ metadata) is licensed by AFOS Analytics under the Creative Commons
6
+ Attribution 4.0 International License (CC BY 4.0).
7
+
8
+ The complete and legally binding text of this license is available at:
9
+
10
+ https://creativecommons.org/licenses/by/4.0/legalcode
11
+
12
+ and is incorporated here by reference. A human-readable summary is at:
13
+
14
+ https://creativecommons.org/licenses/by/4.0/
15
+
16
+ ------------------------------------------------------------------------
17
+ You are free to:
18
+
19
+ • Share — copy and redistribute the material in any medium or format.
20
+ • Adapt — remix, transform, and build upon the material for any purpose,
21
+ even commercially.
22
+
23
+ The licensor cannot revoke these freedoms as long as you follow the
24
+ license terms.
25
+
26
+ Under the following terms:
27
+
28
+ • Attribution — You must give appropriate credit to AFOS Analytics,
29
+ provide a link to this license, and indicate if changes were made.
30
+ You may do so in any reasonable manner, but not in any way that
31
+ suggests AFOS Analytics endorses you or your use.
32
+
33
+ • No additional restrictions — You may not apply legal terms or
34
+ technological measures that legally restrict others from doing
35
+ anything the license permits.
36
+
37
+ ------------------------------------------------------------------------
38
+ Recommended attribution:
39
+
40
+ "AFOS Analytics — Brazil 2026 Electoral Divergence Dataset
41
+ (https://afos-analytics.com), CC BY 4.0."
42
+
43
+ NOTE ON SCOPE: This file governs the DATA. Any code or scripts distributed
44
+ in this repository are licensed separately under the Apache License 2.0
45
+ (see LICENSE-APACHE-2.0).
README.md ADDED
@@ -0,0 +1,97 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ license: cc-by-4.0
3
+ language:
4
+ - en
5
+ - de
6
+ - pt
7
+ - es
8
+ pretty_name: "AFOS — Germany 2025 Electoral Divergence"
9
+ tags:
10
+ - elections
11
+ - germany
12
+ - prediction-markets
13
+ - polls
14
+ - political-risk
15
+ - divergence
16
+ - open-data
17
+ - europe
18
+ ---
19
+
20
+ # AFOS — Germany 2025 Electoral Divergence Dataset
21
+
22
+ 🌐 **[English](#english) · [Português](#português) · [Español](#español)**
23
+
24
+ Open dataset cross-referencing **opinion polls × prediction markets** for Germany's **2025 federal election** (Bundestag, 23 February 2025 — a snap election after the November 2024 coalition collapse), in the same spirit as the AFOS Brazil 2026 dataset: sources reported side by side with **explicit divergence**, not blended into one average.
25
+
26
+ Maintained by **[AFOS Analytics](https://afos-analytics.com)**. *No personal data — only public electoral information.* **Party-level** dataset: polls measure **party vote share**, the market prices the **probability of winning the most seats** — two different quantities, and the gap is the signal.
27
+
28
+ ---
29
+
30
+ ## English
31
+
32
+ **Contents (start with the polls):**
33
+
34
+ | Path | Rows | Content |
35
+ |------|------|---------|
36
+ | `polls/germany-polls.csv` | 2,505 | Party vote-share polling, **long format** (one row per party × poll), 8 parties, 349 polls, 2024→Feb 2025. |
37
+ | `polls/germany-polls.json` | — | Full structured polls (pollster, fieldwork, sample, per-party results). |
38
+ | `data/germany-market-odds-timeseries.csv` | 420 | Daily Polymarket **"wins the most seats"** probability per party (6 parties, Dec 2024→Feb 2025) from the "Germany Parliamentary Election Winner" market. |
39
+ | `data/germany-divergence-timeseries.csv` | 490 | **Market × poll divergence** per party — each poll's party vote share joined to that party's market odds on its date. |
40
+ | `data/germany-poly-raw.json` | — | Raw Polymarket payload, kept for provenance. |
41
+
42
+ <sub>Market data fetched from Polymarket's gamma-api + clob via a US-resolving function. There is no runoff — Germany elects the Bundestag in a single vote.</sub>
43
+
44
+ ### ⚖️ Notable divergences (why divergence beats the average)
45
+
46
+ The market here prices **which party wins the most seats**; the polls measure **party vote share**. In a multi-party system the two come apart sharply — and that gap is the point.
47
+
48
+ - **AfD — second in votes, near-zero to win.** In the final polls the AfD held **~21% of the vote**, clearly the **second-largest party** — yet the market gave it only **~3%** of winning the most seats (a −18 pp market−poll gap). High vote share is not the same as a parliamentary plurality, and the market never confused the two. The AfD finished second (20.8%); it did not win the most seats.
49
+ - **CDU/CSU — the mirror image.** ~**29.5%** of the vote but **~97%** to win the most seats (+67 pp): a moderate vote lead translated into near-certain plurality. The CDU/CSU won (28.5%) and Friedrich Merz became Chancellor.
50
+ - **The small-party threshold (5%):** BSW and FDP hovered right at the **5% Bundestag threshold** in vote-share polls while the market priced their probability of *winning* at ~0% — two parties for whom "share" and "win" were never the same question. Both ultimately fell below 5%.
51
+
52
+ **The reading:** vote share answers "how many votes," the market answers "who wins" — and in a fragmented parliament those diverge by design. A blended poll average tells you the AfD was second; only the market-versus-poll spread tells you it was second *and* had no path to the plurality.
53
+
54
+ **Pollsters covered:** Forsa, INSA, Infratest dimap, Allensbach, YouGov, Ipsos, FGW (Forschungsgruppe Wahlen), GMS, Verian, and others.
55
+
56
+ **Provenance & method:** poll figures compiled deterministically (rowspan/colspan-aware HTML parser) from the public Wikipedia aggregation *"Opinion polling for the 2025 German federal election."* Market odds from the public Polymarket market. Nothing imputed or smoothed; missing values left blank.
57
+
58
+ **License:** CC BY 4.0. Underlying poll numbers are facts released by the named pollsters; the Wikipedia aggregation is CC BY-SA. Please attribute **AFOS Analytics** and the **original pollsters**.
59
+
60
+ **Cite:** *AFOS Analytics. Germany 2025 Electoral Divergence Dataset. Hugging Face, 2026. CC BY 4.0.* (see `CITATION.cff`)
61
+
62
+ **Disclaimer:** observational research. Not investment advice, not voting guidance.
63
+
64
+ ---
65
+
66
+ ## Português
67
+
68
+ Dataset aberto cruzando **pesquisas × mercados de previsão** para a **eleição federal alemã de 2025** (Bundestag, 23/fev/2025 — eleição antecipada após o colapso da coalizão em nov/2024). **Nível partido:** as pesquisas medem **voto por partido**; o mercado precifica a **probabilidade de vencer mais cadeiras** — quantidades diferentes, e a diferença é o sinal.
69
+
70
+ - `polls/germany-polls.csv` — voto por partido, formato largo, 8 partidos, 349 pesquisas (2024→fev 2025).
71
+ - `data/germany-market-odds-timeseries.csv` / `germany-divergence-timeseries.csv` — probabilidade Polymarket de "vencer mais cadeiras" por partido e divergência mercado × pesquisa.
72
+
73
+ ### ⚖️ Divergências em destaque (por que a divergência supera a média)
74
+
75
+ - **AfD — 2º mais votado, quase zero para vencer.** Nas pesquisas finais a AfD tinha ~**21% do voto** (claramente o 2º maior partido) — mas o mercado lhe dava só **~3%** de vencer mais cadeiras (diferença −18pp). Voto alto não é maioria parlamentar, e o mercado nunca confundiu os dois. A AfD ficou em 2º (20,8%); não venceu.
76
+ - **CDU/CSU — a imagem espelhada.** ~**29,5%** de voto mas **~97%** de vencer mais cadeiras (+67pp): liderança moderada de voto vira maioria quase certa. A CDU/CSU venceu (28,5%) e Friedrich Merz virou chanceler.
77
+ - **O limiar de 5%:** BSW e FDP rondavam os **5% da cláusula de barreira** no voto enquanto o mercado precificava a chance de *vencer* em ~0% — dois partidos para quem "voto" e "vencer" nunca foram a mesma pergunta. Ambos ficaram abaixo de 5%.
78
+
79
+ **A leitura:** voto responde "quantos votos", o mercado responde "quem vence" — e num parlamento fragmentado isso diverge por construção. Uma média das pesquisas diz que a AfD era 2ª; só a diferença mercado×pesquisa mostra que era 2ª *e* sem caminho para a maioria.
80
+
81
+ ---
82
+
83
+ ## Español
84
+
85
+ Dataset abierto que cruza **encuestas × mercados de predicción** para la **elección federal alemana de 2025** (Bundestag, 23 feb 2025). **Nivel partido:** las encuestas miden **voto por partido**; el mercado valora la **probabilidad de ganar más escaños**.
86
+
87
+ ### ⚖️ Divergencias destacadas
88
+
89
+ - **AfD — segundo en votos, casi nulo para ganar.** ~**21% del voto** (2º partido) pero el mercado le daba solo **~3%** de ganar más escaños (−18pp). Voto alto no es mayoría parlamentaria. La AfD quedó 2ª (20,8%); no ganó.
90
+ - **CDU/CSU — la imagen espejo.** ~**29,5%** de voto pero **~97%** de ganar más escaños (+67pp). Ganó (28,5%) y Merz fue canciller.
91
+ - **El umbral del 5%:** BSW y FDP rondaban el 5% en voto mientras el mercado valoraba su probabilidad de *ganar* en ~0%. Ambos quedaron bajo el 5%.
92
+
93
+ **Fuente:** agregación pública de Wikipedia; Polymarket. **Licencia:** CC BY 4.0 (atribuir a AFOS Analytics y a las encuestadoras). Investigación observacional; no es asesoría de inversión.
94
+
95
+ ---
96
+
97
+ **Sources / Fontes / Fuentes:** Pollsters (Forsa, INSA, Infratest dimap, Allensbach, …) · [Wikipedia aggregation](https://en.wikipedia.org/wiki/Opinion_polling_for_the_2025_German_federal_election) · Polymarket. Column definitions in [`DATA_DICTIONARY.md`](DATA_DICTIONARY.md).
build-germany-market-divergence.mjs ADDED
@@ -0,0 +1,50 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ /**
2
+ * Série de odds Polymarket + divergência mercado × pesquisa do Chile... Alemanha 2025.
3
+ * Mercado "Germany Parliamentary Election Winner" (P de o partido vencer MAIS cadeiras) × voto por
4
+ * partido nas pesquisas. Via função Vercel/EUA. Molde Chile/Peru. Reprodutível e local.
5
+ *
6
+ * Saída: data/germany-market-odds-timeseries.csv, data/germany-divergence-timeseries.csv
7
+ */
8
+ import { readFileSync, writeFileSync, mkdirSync } from 'fs'
9
+ import { join } from 'path'
10
+
11
+ const ROOT = process.cwd()
12
+ const OUT = join(ROOT, 'data'); mkdirSync(OUT, { recursive: true })
13
+ const csv = (rows) => rows.map((r) => r.map((v) => { const s = String(v ?? ''); return /[",\n]/.test(s) ? `"${s.replace(/"/g, '""')}"` : s }).join(',')).join('\n') + '\n'
14
+ const num = (s) => { const m = String(s).replace(/,/g, '').match(/-?\d+(?:\.\d+)?/); return m ? parseFloat(m[0]) : null }
15
+
16
+ const CANON = [
17
+ ['cdu', 'CDU/CSU'], ['union', 'CDU/CSU'], ['spd', 'SPD'], ['afd', 'AfD'],
18
+ ['green', 'Grüne'], ['grüne', 'Grüne'], ['bsw', 'BSW'], ['linke', 'Die Linke'], ['left', 'Die Linke'], ['fdp', 'FDP'],
19
+ ]
20
+ const canon = (s) => { const t = String(s || '').toLowerCase(); for (const [k, v] of CANON) if (t.includes(k)) return v; return null }
21
+ const isoOf = (t) => new Date(t * 1000).toISOString().slice(0, 10)
22
+
23
+ const raw = JSON.parse(readFileSync(join(OUT, 'germany-poly-raw.json'), 'utf-8'))
24
+ const odds = []
25
+ for (const m of raw.odds || []) {
26
+ const name = canon(m.candidate); if (!name || !Array.isArray(m.history) || !m.history.length) continue
27
+ const byDay = new Map()
28
+ for (const pt of m.history) byDay.set(isoOf(pt.t), pt.p)
29
+ for (const [date, p] of byDay) odds.push({ date, candidate: name, pct: Math.round(p * 1000) / 10, volume: Math.round(m.volume || 0) })
30
+ }
31
+ odds.sort((a, b) => a.date === b.date ? b.pct - a.pct : a.date.localeCompare(b.date))
32
+ writeFileSync(join(OUT, 'germany-market-odds-timeseries.csv'), csv([['date', 'party', 'polymarket_pct', 'volume_usd'], ...odds.map((o) => [o.date, o.candidate, o.pct, o.volume])]))
33
+ console.log(`📈 market-odds: ${odds.length} linhas, ${new Set(odds.map((o) => o.date)).size} datas, ${new Set(odds.map((o) => o.candidate)).size} partidos (${raw.startDate?.slice(0, 10)}→${raw.endDate?.slice(0, 10)})`)
34
+
35
+ const idx = {}
36
+ for (const o of odds) (idx[o.candidate] ||= []).push({ date: o.date, pct: o.pct })
37
+ for (const k in idx) idx[k].sort((a, b) => a.date.localeCompare(b.date))
38
+ const mAt = (k, d) => { const a = idx[k]; if (!a) return null; let best = null; for (const e of a) { if (e.date <= d) best = e; else break } return best }
39
+
40
+ const lines = readFileSync(join(ROOT, 'polls', 'germany-polls.csv'), 'utf-8').trim().split('\n').slice(1)
41
+ const dv = [['poll_date', 'pollster', 'party', 'poll_pct', 'polymarket_pct', 'polymarket_date', 'divergence_pp']]
42
+ let matched = 0
43
+ for (const ln of lines) {
44
+ const c = ln.split(','); const poll_date = c[0], pollster = c[2], party = c[4], poll = num(c[6])
45
+ const k = canon(party); if (!k || poll == null) continue
46
+ const m = mAt(k, poll_date); if (!m) continue
47
+ dv.push([poll_date, pollster, k, poll, m.pct, m.date, Math.round((m.pct - poll) * 100) / 100]); matched++
48
+ }
49
+ writeFileSync(join(OUT, 'germany-divergence-timeseries.csv'), csv(dv))
50
+ console.log(`📊 divergence: ${matched} linhas (voto por partido × mercado "vence mais cadeiras")`)
data/germany-divergence-timeseries.csv ADDED
@@ -0,0 +1,491 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ poll_date,pollster,party,poll_pct,polymarket_pct,polymarket_date,divergence_pp
2
+ 2024-12-17,Verian,SPD,17,4,2024-12-17,-13
3
+ 2024-12-17,Verian,CDU/CSU,1,89.5,2024-12-17,88.5
4
+ 2024-12-17,Verian,Grüne,14,1.4,2024-12-17,-12.6
5
+ 2024-12-17,Verian,FDP,4,0.4,2024-12-17,-3.6
6
+ 2024-12-17,Verian,AfD,18,4.1,2024-12-17,-13.9
7
+ 2024-12-17,Verian,BSW,5,0.4,2024-12-17,-4.6
8
+ 2024-12-18,Infratest dimap,SPD,14,4,2024-12-18,-10
9
+ 2024-12-18,Infratest dimap,CDU/CSU,4,89.5,2024-12-18,85.5
10
+ 2024-12-18,Infratest dimap,Grüne,14,1.3,2024-12-18,-12.7
11
+ 2024-12-18,Infratest dimap,FDP,3,0.4,2024-12-18,-2.6
12
+ 2024-12-18,Infratest dimap,AfD,19,5,2024-12-18,-14
13
+ 2024-12-18,Infratest dimap,BSW,5,0.4,2024-12-18,-4.6
14
+ 2024-12-19,Forschungsgruppe Wahlen,SPD,15,3.3,2024-12-19,-11.7
15
+ 2024-12-19,Forschungsgruppe Wahlen,CDU/CSU,31,88.5,2024-12-19,57.5
16
+ 2024-12-19,Forschungsgruppe Wahlen,Grüne,14,2.2,2024-12-19,-11.8
17
+ 2024-12-19,Forschungsgruppe Wahlen,FDP,3,0.4,2024-12-19,-2.6
18
+ 2024-12-19,Forschungsgruppe Wahlen,AfD,19,5.1,2024-12-19,-13.9
19
+ 2024-12-19,Forschungsgruppe Wahlen,BSW,5,0.4,2024-12-19,-4.6
20
+ 2024-12-19,INSA,SPD,16,3.3,2024-12-19,-12.7
21
+ 2024-12-19,INSA,CDU/CSU,32,88.5,2024-12-19,56.5
22
+ 2024-12-19,INSA,Grüne,12,2.2,2024-12-19,-9.8
23
+ 2024-12-19,INSA,FDP,5,0.4,2024-12-19,-4.6
24
+ 2024-12-19,INSA,AfD,20,5.1,2024-12-19,-14.9
25
+ 2024-12-19,INSA,BSW,8,0.4,2024-12-19,-7.6
26
+ 2024-12-20,Forsa,SPD,16,2.8,2024-12-20,-13.2
27
+ 2024-12-20,Forsa,CDU/CSU,31,91,2024-12-20,60
28
+ 2024-12-20,Forsa,Grüne,13,1.9,2024-12-20,-11.1
29
+ 2024-12-20,Forsa,FDP,3,0.3,2024-12-20,-2.7
30
+ 2024-12-20,Forsa,AfD,19,4.1,2024-12-20,-14.9
31
+ 2024-12-20,Forsa,BSW,4,0.3,2024-12-20,-3.7
32
+ 2024-12-23,INSA,SPD,16,0.8,2024-12-23,-15.2
33
+ 2024-12-23,INSA,CDU/CSU,31,85.5,2024-12-23,54.5
34
+ 2024-12-23,INSA,Grüne,12.5,0.4,2024-12-23,-12.1
35
+ 2024-12-23,INSA,FDP,5,0.3,2024-12-23,-4.7
36
+ 2024-12-23,INSA,AfD,19.5,13.1,2024-12-23,-6.4
37
+ 2024-12-23,INSA,BSW,8,0.3,2024-12-23,-7.7
38
+ 2024-12-27,INSA,SPD,17,0.7,2024-12-27,-16.3
39
+ 2024-12-27,INSA,CDU/CSU,31,89.5,2024-12-27,58.5
40
+ 2024-12-27,INSA,Grüne,12,0.5,2024-12-27,-11.5
41
+ 2024-12-27,INSA,FDP,4,0.3,2024-12-27,-3.7
42
+ 2024-12-27,INSA,AfD,20,9,2024-12-27,-11
43
+ 2024-12-27,INSA,BSW,7,0.3,2024-12-27,-6.7
44
+ 2024-12-28,Wahlkreisprognose,SPD,18,0.8,2024-12-28,-17.2
45
+ 2024-12-28,Wahlkreisprognose,CDU/CSU,28,90.5,2024-12-28,62.5
46
+ 2024-12-28,Wahlkreisprognose,Grüne,15.5,0.5,2024-12-28,-15
47
+ 2024-12-28,Wahlkreisprognose,FDP,4,0.3,2024-12-28,-3.7
48
+ 2024-12-28,Wahlkreisprognose,AfD,18,7.8,2024-12-28,-10.2
49
+ 2024-12-28,Wahlkreisprognose,BSW,6,0.3,2024-12-28,-5.7
50
+ 2024-12-30,INSA,SPD,16.5,0.8,2024-12-30,-15.7
51
+ 2024-12-30,INSA,CDU/CSU,31,92.5,2024-12-30,61.5
52
+ 2024-12-30,INSA,Grüne,12,0.6,2024-12-30,-11.4
53
+ 2024-12-30,INSA,FDP,3.5,0.3,2024-12-30,-3.2
54
+ 2024-12-30,INSA,AfD,20.5,6.3,2024-12-30,-14.2
55
+ 2024-12-30,INSA,BSW,7,0.3,2024-12-30,-6.7
56
+ 2025-01-02,GMS,SPD,16,0.7,2025-01-02,-15.3
57
+ 2025-01-02,GMS,CDU/CSU,33,91.5,2025-01-02,58.5
58
+ 2025-01-02,GMS,Grüne,13,0.5,2025-01-02,-12.5
59
+ 2025-01-02,GMS,FDP,4,0.3,2025-01-02,-3.7
60
+ 2025-01-02,GMS,AfD,18,7.1,2025-01-02,-10.9
61
+ 2025-01-02,GMS,BSW,4,0.3,2025-01-02,-3.7
62
+ 2025-01-03,INSA,SPD,16,0.8,2025-01-03,-15.2
63
+ 2025-01-03,INSA,CDU/CSU,31,91.5,2025-01-03,60.5
64
+ 2025-01-03,INSA,Grüne,13,0.4,2025-01-03,-12.6
65
+ 2025-01-03,INSA,FDP,4,0.3,2025-01-03,-3.7
66
+ 2025-01-03,INSA,AfD,20,6.8,2025-01-03,-13.2
67
+ 2025-01-03,INSA,BSW,7,0.3,2025-01-03,-6.7
68
+ 2025-01-04,Ipsos,SPD,16,0.7,2025-01-04,-15.3
69
+ 2025-01-04,Ipsos,CDU/CSU,30,92.5,2025-01-04,62.5
70
+ 2025-01-04,Ipsos,Grüne,13,0.4,2025-01-04,-12.6
71
+ 2025-01-04,Ipsos,FDP,4,0.3,2025-01-04,-3.7
72
+ 2025-01-04,Ipsos,AfD,19,6.4,2025-01-04,-12.6
73
+ 2025-01-04,Ipsos,BSW,7,0.3,2025-01-04,-6.7
74
+ 2025-01-06,YouGov,SPD,16,0.7,2025-01-06,-15.3
75
+ 2025-01-06,YouGov,CDU/CSU,29,89.5,2025-01-06,60.5
76
+ 2025-01-06,YouGov,Grüne,14,0.4,2025-01-06,-13.6
77
+ 2025-01-06,YouGov,FDP,5,0.3,2025-01-06,-4.7
78
+ 2025-01-06,YouGov,AfD,21,9.4,2025-01-06,-11.6
79
+ 2025-01-06,YouGov,BSW,6,0.4,2025-01-06,-5.6
80
+ 2025-01-06,INSA,SPD,15.5,0.7,2025-01-06,-14.8
81
+ 2025-01-06,INSA,CDU/CSU,31,89.5,2025-01-06,58.5
82
+ 2025-01-06,INSA,Grüne,13.5,0.4,2025-01-06,-13.1
83
+ 2025-01-06,INSA,FDP,4,0.3,2025-01-06,-3.7
84
+ 2025-01-06,INSA,AfD,21.5,9.4,2025-01-06,-12.1
85
+ 2025-01-06,INSA,BSW,6.5,0.4,2025-01-06,-6.1
86
+ 2025-01-06,Forsa,SPD,17,0.7,2025-01-06,-16.3
87
+ 2025-01-06,Forsa,CDU/CSU,4,89.5,2025-01-06,85.5
88
+ 2025-01-06,Forsa,Grüne,12,0.4,2025-01-06,-11.6
89
+ 2025-01-06,Forsa,FDP,3,0.3,2025-01-06,-2.7
90
+ 2025-01-06,Forsa,AfD,19,9.4,2025-01-06,-9.6
91
+ 2025-01-06,Forsa,BSW,4,0.4,2025-01-06,-3.6
92
+ 2025-01-08,Infratest dimap,SPD,15,0.7,2025-01-08,-14.3
93
+ 2025-01-08,Infratest dimap,CDU/CSU,31,90.5,2025-01-08,59.5
94
+ 2025-01-08,Infratest dimap,Grüne,14,0.4,2025-01-08,-13.6
95
+ 2025-01-08,Infratest dimap,FDP,4,0.3,2025-01-08,-3.7
96
+ 2025-01-08,Infratest dimap,AfD,20,7.6,2025-01-08,-12.4
97
+ 2025-01-08,Infratest dimap,BSW,5,0.3,2025-01-08,-4.7
98
+ 2025-01-09,Forschungsgruppe Wahlen,SPD,14,0.7,2025-01-09,-13.3
99
+ 2025-01-09,Forschungsgruppe Wahlen,CDU/CSU,30,90.5,2025-01-09,60.5
100
+ 2025-01-09,Forschungsgruppe Wahlen,Grüne,15,0.4,2025-01-09,-14.6
101
+ 2025-01-09,Forschungsgruppe Wahlen,FDP,4,0.3,2025-01-09,-3.7
102
+ 2025-01-09,Forschungsgruppe Wahlen,AfD,21,7.5,2025-01-09,-13.5
103
+ 2025-01-09,Forschungsgruppe Wahlen,BSW,4,0.3,2025-01-09,-3.7
104
+ 2025-01-10,INSA,SPD,16,0.8,2025-01-10,-15.2
105
+ 2025-01-10,INSA,CDU/CSU,30,89.5,2025-01-10,59.5
106
+ 2025-01-10,INSA,Grüne,13,0.4,2025-01-10,-12.6
107
+ 2025-01-10,INSA,FDP,4,0.4,2025-01-10,-3.6
108
+ 2025-01-10,INSA,AfD,22,8.3,2025-01-10,-13.7
109
+ 2025-01-10,INSA,BSW,6,0.4,2025-01-10,-5.6
110
+ 2025-01-13,INSA,SPD,15,0.8,2025-01-13,-14.2
111
+ 2025-01-13,INSA,CDU/CSU,31,88.5,2025-01-13,57.5
112
+ 2025-01-13,INSA,Grüne,13,0.4,2025-01-13,-12.6
113
+ 2025-01-13,INSA,FDP,4,0.4,2025-01-13,-3.6
114
+ 2025-01-13,INSA,AfD,22,10,2025-01-13,-12
115
+ 2025-01-13,INSA,BSW,6.5,0.4,2025-01-13,-6.1
116
+ 2025-01-13,Forsa,SPD,16,0.8,2025-01-13,-15.2
117
+ 2025-01-13,Forsa,CDU/CSU,31,88.5,2025-01-13,57.5
118
+ 2025-01-13,Forsa,Grüne,13,0.4,2025-01-13,-12.6
119
+ 2025-01-13,Forsa,FDP,4,0.4,2025-01-13,-3.6
120
+ 2025-01-13,Forsa,AfD,20,10,2025-01-13,-10
121
+ 2025-01-13,Forsa,BSW,4,0.4,2025-01-13,-3.6
122
+ 2025-01-13,Infratest dimap,SPD,10,0.8,2025-01-13,-9.2
123
+ 2025-01-13,Infratest dimap,Grüne,14,0.4,2025-01-13,-13.6
124
+ 2025-01-13,Infratest dimap,FDP,4,0.4,2025-01-13,-3.6
125
+ 2025-01-13,Infratest dimap,AfD,16,10,2025-01-13,-6
126
+ 2025-01-14,YouGov,SPD,18,0.8,2025-01-14,-17.2
127
+ 2025-01-14,YouGov,CDU/CSU,4,89.5,2025-01-14,85.5
128
+ 2025-01-14,YouGov,Grüne,14,0.4,2025-01-14,-13.6
129
+ 2025-01-14,YouGov,FDP,4,0.4,2025-01-14,-3.6
130
+ 2025-01-14,YouGov,AfD,21,8.5,2025-01-14,-12.5
131
+ 2025-01-14,YouGov,BSW,6,0.4,2025-01-14,-5.6
132
+ 2025-01-15,YouGov,SPD,15.6,0.8,2025-01-15,-14.8
133
+ 2025-01-15,YouGov,CDU/CSU,29.8,90,2025-01-15,60.2
134
+ 2025-01-15,YouGov,Grüne,13.6,0.4,2025-01-15,-13.2
135
+ 2025-01-15,YouGov,FDP,4.5,0.4,2025-01-15,-4.1
136
+ 2025-01-15,YouGov,AfD,19.7,8.2,2025-01-15,-11.5
137
+ 2025-01-15,YouGov,BSW,6,0.4,2025-01-15,-5.6
138
+ 2025-01-16,Wahlkreisprognose,SPD,16.5,0.8,2025-01-16,-15.7
139
+ 2025-01-16,Wahlkreisprognose,CDU/CSU,29,89.5,2025-01-16,60.5
140
+ 2025-01-16,Wahlkreisprognose,Grüne,15,0.5,2025-01-16,-14.5
141
+ 2025-01-16,Wahlkreisprognose,FDP,4,0.4,2025-01-16,-3.6
142
+ 2025-01-16,Wahlkreisprognose,AfD,21,8.8,2025-01-16,-12.2
143
+ 2025-01-16,Wahlkreisprognose,BSW,4,0.4,2025-01-16,-3.6
144
+ 2025-01-16,Infratest dimap,SPD,18,0.8,2025-01-16,-17.2
145
+ 2025-01-16,Infratest dimap,Grüne,18,0.5,2025-01-16,-17.5
146
+ 2025-01-16,Infratest dimap,FDP,4,0.4,2025-01-16,-3.6
147
+ 2025-01-16,Infratest dimap,AfD,15,8.8,2025-01-16,-6.2
148
+ 2025-01-17,INSA,SPD,16,0.8,2025-01-17,-15.2
149
+ 2025-01-17,INSA,CDU/CSU,29,89.5,2025-01-17,60.5
150
+ 2025-01-17,INSA,Grüne,13,0.5,2025-01-17,-12.5
151
+ 2025-01-17,INSA,FDP,5,0.4,2025-01-17,-4.6
152
+ 2025-01-17,INSA,AfD,21,8.4,2025-01-17,-12.6
153
+ 2025-01-17,INSA,BSW,7,0.3,2025-01-17,-6.7
154
+ 2025-01-18,Ipsos,SPD,16,0.8,2025-01-18,-15.2
155
+ 2025-01-18,Ipsos,CDU/CSU,30,89.5,2025-01-18,59.5
156
+ 2025-01-18,Ipsos,Grüne,14,0.5,2025-01-18,-13.5
157
+ 2025-01-18,Ipsos,FDP,4,0.4,2025-01-18,-3.6
158
+ 2025-01-18,Ipsos,AfD,19,8.7,2025-01-18,-10.3
159
+ 2025-01-18,Ipsos,BSW,6,0.3,2025-01-18,-5.7
160
+ 2025-01-19,Allensbach,SPD,17,0.8,2025-01-19,-16.2
161
+ 2025-01-19,Allensbach,CDU/CSU,34,89.5,2025-01-19,55.5
162
+ 2025-01-19,Allensbach,Grüne,13.5,0.5,2025-01-19,-13
163
+ 2025-01-19,Allensbach,FDP,4,0.4,2025-01-19,-3.6
164
+ 2025-01-19,Allensbach,AfD,20,8.4,2025-01-19,-11.6
165
+ 2025-01-19,Allensbach,BSW,5,0.3,2025-01-19,-4.7
166
+ 2025-01-20,YouGov,SPD,19,0.7,2025-01-20,-18.3
167
+ 2025-01-20,YouGov,CDU/CSU,4,90.5,2025-01-20,86.5
168
+ 2025-01-20,YouGov,Grüne,15,0.4,2025-01-20,-14.6
169
+ 2025-01-20,YouGov,FDP,4,0.4,2025-01-20,-3.6
170
+ 2025-01-20,YouGov,AfD,19,8.2,2025-01-20,-10.8
171
+ 2025-01-20,YouGov,BSW,6,0.3,2025-01-20,-5.7
172
+ 2025-01-20,INSA,SPD,16,0.7,2025-01-20,-15.3
173
+ 2025-01-20,INSA,CDU/CSU,29,90.5,2025-01-20,61.5
174
+ 2025-01-20,INSA,Grüne,13,0.4,2025-01-20,-12.6
175
+ 2025-01-20,INSA,FDP,5,0.4,2025-01-20,-4.6
176
+ 2025-01-20,INSA,AfD,21.5,8.2,2025-01-20,-13.3
177
+ 2025-01-20,INSA,BSW,7,0.3,2025-01-20,-6.7
178
+ 2025-01-20,Forsa,SPD,16,0.7,2025-01-20,-15.3
179
+ 2025-01-20,Forsa,CDU/CSU,31,90.5,2025-01-20,59.5
180
+ 2025-01-20,Forsa,Grüne,13,0.4,2025-01-20,-12.6
181
+ 2025-01-20,Forsa,FDP,4,0.4,2025-01-20,-3.6
182
+ 2025-01-20,Forsa,AfD,19,8.2,2025-01-20,-10.8
183
+ 2025-01-20,Forsa,BSW,4,0.3,2025-01-20,-3.7
184
+ 2025-01-20,Trend Research,SPD,3,0.7,2025-01-20,-2.3
185
+ 2025-01-20,Trend Research,Grüne,22,0.4,2025-01-20,-21.6
186
+ 2025-01-20,Trend Research,FDP,4,0.4,2025-01-20,-3.6
187
+ 2025-01-20,Trend Research,AfD,13,8.2,2025-01-20,-4.8
188
+ 2025-01-20,Trend Research,BSW,4,0.3,2025-01-20,-3.7
189
+ 2025-01-23,Forschungsgruppe Wahlen,SPD,15,0.4,2025-01-23,-14.6
190
+ 2025-01-23,Forschungsgruppe Wahlen,CDU/CSU,30,91.5,2025-01-23,61.5
191
+ 2025-01-23,Forschungsgruppe Wahlen,Grüne,14,0.3,2025-01-23,-13.7
192
+ 2025-01-23,Forschungsgruppe Wahlen,FDP,4,0.4,2025-01-23,-3.6
193
+ 2025-01-23,Forschungsgruppe Wahlen,AfD,21,7.5,2025-01-23,-13.5
194
+ 2025-01-23,Forschungsgruppe Wahlen,BSW,3,0.4,2025-01-23,-2.6
195
+ 2025-01-23,Wahlkreisprognose,SPD,17,0.4,2025-01-23,-16.6
196
+ 2025-01-23,Wahlkreisprognose,CDU/CSU,28.5,91.5,2025-01-23,63
197
+ 2025-01-23,Wahlkreisprognose,Grüne,14,0.3,2025-01-23,-13.7
198
+ 2025-01-23,Wahlkreisprognose,FDP,3.5,0.4,2025-01-23,-3.1
199
+ 2025-01-23,Wahlkreisprognose,AfD,21.5,7.5,2025-01-23,-14
200
+ 2025-01-23,Wahlkreisprognose,BSW,4.5,0.4,2025-01-23,-4.1
201
+ 2025-01-24,INSA,SPD,16,0.4,2025-01-24,-15.6
202
+ 2025-01-24,INSA,CDU/CSU,30,91.5,2025-01-24,61.5
203
+ 2025-01-24,INSA,Grüne,12,0.3,2025-01-24,-11.7
204
+ 2025-01-24,INSA,FDP,4,0.4,2025-01-24,-3.6
205
+ 2025-01-24,INSA,AfD,21,7.4,2025-01-24,-13.6
206
+ 2025-01-24,INSA,BSW,7,0.4,2025-01-24,-6.6
207
+ 2025-01-25,Infratest dimap,SPD,15,0.4,2025-01-25,-14.6
208
+ 2025-01-25,Infratest dimap,AfD,6,4.1,2025-01-25,-1.9
209
+ 2025-01-25,Infratest dimap,FDP,3,0.4,2025-01-25,-2.6
210
+ 2025-01-25,Infratest dimap,Grüne,8,0.3,2025-01-25,-7.7
211
+ 2025-01-25,Infratest dimap,BSW,11,0.4,2025-01-25,-10.6
212
+ 2025-01-27,YouGov,SPD,15,0.4,2025-01-27,-14.6
213
+ 2025-01-27,YouGov,CDU/CSU,29,93.5,2025-01-27,64.5
214
+ 2025-01-27,YouGov,Grüne,13,0.3,2025-01-27,-12.7
215
+ 2025-01-27,YouGov,FDP,3,0.4,2025-01-27,-2.6
216
+ 2025-01-27,YouGov,AfD,23,5.6,2025-01-27,-17.4
217
+ 2025-01-27,YouGov,BSW,6,0.4,2025-01-27,-5.6
218
+ 2025-01-27,INSA,SPD,15.5,0.4,2025-01-27,-15.1
219
+ 2025-01-27,INSA,CDU/CSU,30,93.5,2025-01-27,63.5
220
+ 2025-01-27,INSA,Grüne,12.5,0.3,2025-01-27,-12.2
221
+ 2025-01-27,INSA,FDP,4.5,0.4,2025-01-27,-4.1
222
+ 2025-01-27,INSA,AfD,22,5.6,2025-01-27,-16.4
223
+ 2025-01-27,INSA,BSW,6,0.4,2025-01-27,-5.6
224
+ 2025-01-27,Forsa,SPD,16,0.4,2025-01-27,-15.6
225
+ 2025-01-27,Forsa,CDU/CSU,30,93.5,2025-01-27,63.5
226
+ 2025-01-27,Forsa,Grüne,14,0.3,2025-01-27,-13.7
227
+ 2025-01-27,Forsa,FDP,4,0.4,2025-01-27,-3.6
228
+ 2025-01-27,Forsa,AfD,20,5.6,2025-01-27,-14.4
229
+ 2025-01-27,Forsa,BSW,3,0.4,2025-01-27,-2.6
230
+ 2025-01-28,Verian,SPD,15,0.4,2025-01-28,-14.6
231
+ 2025-01-28,Verian,CDU/CSU,30,93.5,2025-01-28,63.5
232
+ 2025-01-28,Verian,Grüne,14,0.3,2025-01-28,-13.7
233
+ 2025-01-28,Verian,FDP,4,0.4,2025-01-28,-3.6
234
+ 2025-01-28,Verian,AfD,20,5.5,2025-01-28,-14.5
235
+ 2025-01-28,Verian,BSW,5,0.4,2025-01-28,-4.6
236
+ 2025-01-29,Infratest dimap,SPD,15,0.4,2025-01-29,-14.6
237
+ 2025-01-29,Infratest dimap,CDU/CSU,30,92.5,2025-01-29,62.5
238
+ 2025-01-29,Infratest dimap,Grüne,15,0.3,2025-01-29,-14.7
239
+ 2025-01-29,Infratest dimap,FDP,4,0.4,2025-01-29,-3.6
240
+ 2025-01-29,Infratest dimap,AfD,20,5.9,2025-01-29,-14.1
241
+ 2025-01-29,Infratest dimap,BSW,4,0.4,2025-01-29,-3.6
242
+ 2025-01-29,Forschungsgruppe Wahlen,SPD,15,0.4,2025-01-29,-14.6
243
+ 2025-01-29,Forschungsgruppe Wahlen,CDU/CSU,4,92.5,2025-01-29,88.5
244
+ 2025-01-29,Forschungsgruppe Wahlen,Grüne,14,0.3,2025-01-29,-13.7
245
+ 2025-01-29,Forschungsgruppe Wahlen,FDP,4,0.4,2025-01-29,-3.6
246
+ 2025-01-29,Forschungsgruppe Wahlen,AfD,21,5.9,2025-01-29,-15.1
247
+ 2025-01-29,Forschungsgruppe Wahlen,BSW,4,0.4,2025-01-29,-3.6
248
+ 2025-01-30,INSA,SPD,17,0.4,2025-01-30,-16.6
249
+ 2025-01-30,INSA,CDU/CSU,6,91.5,2025-01-30,85.5
250
+ 2025-01-30,INSA,Grüne,13,0.3,2025-01-30,-12.7
251
+ 2025-01-30,INSA,FDP,4,0.4,2025-01-30,-3.6
252
+ 2025-01-30,INSA,AfD,22,7.2,2025-01-30,-14.8
253
+ 2025-01-30,INSA,BSW,6,0.4,2025-01-30,-5.6
254
+ 2025-01-30,Democracy Institute,SPD,15,0.4,2025-01-30,-14.6
255
+ 2025-01-30,Democracy Institute,CDU/CSU,9,91.5,2025-01-30,82.5
256
+ 2025-01-30,Democracy Institute,Grüne,13,0.3,2025-01-30,-12.7
257
+ 2025-01-30,Democracy Institute,FDP,5,0.4,2025-01-30,-4.6
258
+ 2025-01-30,Democracy Institute,AfD,25,7.2,2025-01-30,-17.8
259
+ 2025-01-30,Democracy Institute,BSW,6,0.4,2025-01-30,-5.6
260
+ 2025-01-31,INSA,SPD,17,0.4,2025-01-31,-16.6
261
+ 2025-01-31,INSA,CDU/CSU,3,91.5,2025-01-31,88.5
262
+ 2025-01-31,INSA,Grüne,12,0.3,2025-01-31,-11.7
263
+ 2025-01-31,INSA,FDP,4,0.4,2025-01-31,-3.6
264
+ 2025-01-31,INSA,AfD,22,7.3,2025-01-31,-14.7
265
+ 2025-01-31,INSA,BSW,6,0.3,2025-01-31,-5.7
266
+ 2025-01-31,Ipsos,SPD,16,0.4,2025-01-31,-15.6
267
+ 2025-01-31,Ipsos,CDU/CSU,5,91.5,2025-01-31,86.5
268
+ 2025-01-31,Ipsos,Grüne,13,0.3,2025-01-31,-12.7
269
+ 2025-01-31,Ipsos,FDP,4,0.4,2025-01-31,-3.6
270
+ 2025-01-31,Ipsos,AfD,21,7.3,2025-01-31,-13.7
271
+ 2025-01-31,Ipsos,BSW,5,0.3,2025-01-31,-4.7
272
+ 2025-02-03,Wahlkreisprognose,SPD,16.5,1,2025-02-03,-15.5
273
+ 2025-02-03,Wahlkreisprognose,CDU/CSU,4,90.5,2025-02-03,86.5
274
+ 2025-02-03,Wahlkreisprognose,Grüne,12,0.3,2025-02-03,-11.7
275
+ 2025-02-03,Wahlkreisprognose,FDP,4.5,0.1,2025-02-03,-4.4
276
+ 2025-02-03,Wahlkreisprognose,AfD,19.5,8.6,2025-02-03,-10.9
277
+ 2025-02-03,Wahlkreisprognose,BSW,5.5,0.1,2025-02-03,-5.4
278
+ 2025-02-03,INSA,SPD,16,1,2025-02-03,-15
279
+ 2025-02-03,INSA,CDU/CSU,2,90.5,2025-02-03,88.5
280
+ 2025-02-03,INSA,Grüne,13,0.3,2025-02-03,-12.7
281
+ 2025-02-03,INSA,FDP,4.5,0.1,2025-02-03,-4.4
282
+ 2025-02-03,INSA,AfD,22,8.6,2025-02-03,-13.4
283
+ 2025-02-03,INSA,BSW,5.5,0.1,2025-02-03,-5.4
284
+ 2025-02-03,Forsa,SPD,16,1,2025-02-03,-15
285
+ 2025-02-03,Forsa,CDU/CSU,7,90.5,2025-02-03,83.5
286
+ 2025-02-03,Forsa,Grüne,15,0.3,2025-02-03,-14.7
287
+ 2025-02-03,Forsa,FDP,4,0.1,2025-02-03,-3.9
288
+ 2025-02-03,Forsa,AfD,20,8.6,2025-02-03,-11.4
289
+ 2025-02-03,Forsa,BSW,4,0.1,2025-02-03,-3.9
290
+ 2025-02-04,YouGov,SPD,18,0.4,2025-02-04,-17.6
291
+ 2025-02-04,YouGov,CDU/CSU,29,90.5,2025-02-04,61.5
292
+ 2025-02-04,YouGov,Grüne,12,0.3,2025-02-04,-11.7
293
+ 2025-02-04,YouGov,FDP,4,0.1,2025-02-04,-3.9
294
+ 2025-02-04,YouGov,AfD,22,9.1,2025-02-04,-12.9
295
+ 2025-02-04,YouGov,BSW,6,0.1,2025-02-04,-5.9
296
+ 2025-02-05,Infratest dimap,SPD,15,0.3,2025-02-05,-14.7
297
+ 2025-02-05,Infratest dimap,CDU/CSU,31,90.5,2025-02-05,59.5
298
+ 2025-02-05,Infratest dimap,Grüne,14,0.3,2025-02-05,-13.7
299
+ 2025-02-05,Infratest dimap,FDP,4,0.1,2025-02-05,-3.9
300
+ 2025-02-05,Infratest dimap,AfD,21,9.2,2025-02-05,-11.8
301
+ 2025-02-05,Infratest dimap,BSW,4,0.1,2025-02-05,-3.9
302
+ 2025-02-05,YouGov,SPD,15.3,0.3,2025-02-05,-15
303
+ 2025-02-05,YouGov,CDU/CSU,29,90.5,2025-02-05,61.5
304
+ 2025-02-05,YouGov,Grüne,13.3,0.3,2025-02-05,-13
305
+ 2025-02-05,YouGov,FDP,4.1,0.1,2025-02-05,-4
306
+ 2025-02-05,YouGov,AfD,19.9,9.2,2025-02-05,-10.7
307
+ 2025-02-05,YouGov,BSW,5.4,0.1,2025-02-05,-5.3
308
+ 2025-02-06,Pollytix,SPD,17,0.3,2025-02-06,-16.7
309
+ 2025-02-06,Pollytix,CDU/CSU,30,90.5,2025-02-06,60.5
310
+ 2025-02-06,Pollytix,Grüne,12,0.3,2025-02-06,-11.7
311
+ 2025-02-06,Pollytix,FDP,4,0.1,2025-02-06,-3.9
312
+ 2025-02-06,Pollytix,AfD,20,8.5,2025-02-06,-11.5
313
+ 2025-02-06,Pollytix,BSW,5,0.1,2025-02-06,-4.9
314
+ 2025-02-06,Forschungsgruppe Wahlen,SPD,15,0.3,2025-02-06,-14.7
315
+ 2025-02-06,Forschungsgruppe Wahlen,CDU/CSU,30,90.5,2025-02-06,60.5
316
+ 2025-02-06,Forschungsgruppe Wahlen,Grüne,15,0.3,2025-02-06,-14.7
317
+ 2025-02-06,Forschungsgruppe Wahlen,FDP,4,0.1,2025-02-06,-3.9
318
+ 2025-02-06,Forschungsgruppe Wahlen,AfD,20,8.5,2025-02-06,-11.5
319
+ 2025-02-06,Forschungsgruppe Wahlen,BSW,4,0.1,2025-02-06,-3.9
320
+ 2025-02-07,GMS,SPD,15,0.3,2025-02-07,-14.7
321
+ 2025-02-07,GMS,CDU/CSU,30,91,2025-02-07,61
322
+ 2025-02-07,GMS,Grüne,14,0.3,2025-02-07,-13.7
323
+ 2025-02-07,GMS,FDP,4,0.1,2025-02-07,-3.9
324
+ 2025-02-07,GMS,AfD,21,8.2,2025-02-07,-12.8
325
+ 2025-02-07,GMS,BSW,4,0.1,2025-02-07,-3.9
326
+ 2025-02-07,INSA,SPD,16,0.3,2025-02-07,-15.7
327
+ 2025-02-07,INSA,CDU/CSU,29,91,2025-02-07,62
328
+ 2025-02-07,INSA,Grüne,12,0.3,2025-02-07,-11.7
329
+ 2025-02-07,INSA,FDP,4,0.1,2025-02-07,-3.9
330
+ 2025-02-07,INSA,AfD,21,8.2,2025-02-07,-12.8
331
+ 2025-02-07,INSA,BSW,6,0.1,2025-02-07,-5.9
332
+ 2025-02-10,YouGov,SPD,16,0.3,2025-02-10,-15.7
333
+ 2025-02-10,YouGov,CDU/CSU,29,92.5,2025-02-10,63.5
334
+ 2025-02-10,YouGov,Grüne,12,0.1,2025-02-10,-11.9
335
+ 2025-02-10,YouGov,FDP,4,0.1,2025-02-10,-3.9
336
+ 2025-02-10,YouGov,AfD,21,7.1,2025-02-10,-13.9
337
+ 2025-02-10,YouGov,BSW,5,0.1,2025-02-10,-4.9
338
+ 2025-02-10,INSA,SPD,15.5,0.3,2025-02-10,-15.2
339
+ 2025-02-10,INSA,CDU/CSU,30,92.5,2025-02-10,62.5
340
+ 2025-02-10,INSA,Grüne,13,0.1,2025-02-10,-12.9
341
+ 2025-02-10,INSA,FDP,4,0.1,2025-02-10,-3.9
342
+ 2025-02-10,INSA,AfD,22,7.1,2025-02-10,-14.9
343
+ 2025-02-10,INSA,BSW,5.5,0.1,2025-02-10,-5.4
344
+ 2025-02-10,Forsa,SPD,16,0.3,2025-02-10,-15.7
345
+ 2025-02-10,Forsa,CDU/CSU,4,92.5,2025-02-10,88.5
346
+ 2025-02-10,Forsa,Grüne,14,0.1,2025-02-10,-13.9
347
+ 2025-02-10,Forsa,FDP,4,0.1,2025-02-10,-3.9
348
+ 2025-02-10,Forsa,AfD,20,7.1,2025-02-10,-12.9
349
+ 2025-02-10,Forsa,BSW,4,0.1,2025-02-10,-3.9
350
+ 2025-02-10,Infratest dimap,SPD,12,0.3,2025-02-10,-11.7
351
+ 2025-02-10,Infratest dimap,Grüne,18,0.1,2025-02-10,-17.9
352
+ 2025-02-10,Infratest dimap,FDP,5,0.1,2025-02-10,-4.9
353
+ 2025-02-10,Infratest dimap,AfD,18,7.1,2025-02-10,-10.9
354
+ 2025-02-10,Infratest dimap,BSW,4,0.1,2025-02-10,-3.9
355
+ 2025-02-12,Infratest dimap,SPD,14,0.3,2025-02-12,-13.7
356
+ 2025-02-12,Infratest dimap,CDU/CSU,32,92.5,2025-02-12,60.5
357
+ 2025-02-12,Infratest dimap,Grüne,14,0.1,2025-02-12,-13.9
358
+ 2025-02-12,Infratest dimap,FDP,4,0.1,2025-02-12,-3.9
359
+ 2025-02-12,Infratest dimap,AfD,21,6.9,2025-02-12,-14.1
360
+ 2025-02-12,Infratest dimap,BSW,4.5,0.1,2025-02-12,-4.4
361
+ 2025-02-12,Allensbach,SPD,15,0.3,2025-02-12,-14.7
362
+ 2025-02-12,Allensbach,CDU/CSU,32,92.5,2025-02-12,60.5
363
+ 2025-02-12,Allensbach,Grüne,13,0.1,2025-02-12,-12.9
364
+ 2025-02-12,Allensbach,FDP,5,0.1,2025-02-12,-4.9
365
+ 2025-02-12,Allensbach,AfD,20,6.9,2025-02-12,-13.1
366
+ 2025-02-12,Allensbach,BSW,4,0.1,2025-02-12,-3.9
367
+ 2025-02-12,Pollytix,SPD,17,0.3,2025-02-12,-16.7
368
+ 2025-02-12,Pollytix,CDU/CSU,29,92.5,2025-02-12,63.5
369
+ 2025-02-12,Pollytix,Grüne,14,0.1,2025-02-12,-13.9
370
+ 2025-02-12,Pollytix,FDP,4,0.1,2025-02-12,-3.9
371
+ 2025-02-12,Pollytix,AfD,19,6.9,2025-02-12,-12.1
372
+ 2025-02-12,Pollytix,BSW,5,0.1,2025-02-12,-4.9
373
+ 2025-02-13,Forschungsgruppe Wahlen,SPD,16,0.2,2025-02-13,-15.8
374
+ 2025-02-13,Forschungsgruppe Wahlen,CDU/CSU,30,93.5,2025-02-13,63.5
375
+ 2025-02-13,Forschungsgruppe Wahlen,Grüne,14,0.1,2025-02-13,-13.9
376
+ 2025-02-13,Forschungsgruppe Wahlen,FDP,4,0.1,2025-02-13,-3.9
377
+ 2025-02-13,Forschungsgruppe Wahlen,AfD,20,6,2025-02-13,-14
378
+ 2025-02-13,Forschungsgruppe Wahlen,BSW,4,0.1,2025-02-13,-3.9
379
+ 2025-02-13,Wahlkreisprognose,SPD,12.5,0.2,2025-02-13,-12.3
380
+ 2025-02-13,Wahlkreisprognose,CDU/CSU,32,93.5,2025-02-13,61.5
381
+ 2025-02-13,Wahlkreisprognose,Grüne,12.5,0.1,2025-02-13,-12.4
382
+ 2025-02-13,Wahlkreisprognose,FDP,4,0.1,2025-02-13,-3.9
383
+ 2025-02-13,Wahlkreisprognose,AfD,20,6,2025-02-13,-14
384
+ 2025-02-13,Wahlkreisprognose,BSW,4.5,0.1,2025-02-13,-4.4
385
+ 2025-02-14,INSA,SPD,15,0.2,2025-02-14,-14.8
386
+ 2025-02-14,INSA,CDU/CSU,4,94.5,2025-02-14,90.5
387
+ 2025-02-14,INSA,Grüne,13,0.1,2025-02-14,-12.9
388
+ 2025-02-14,INSA,FDP,4,0.1,2025-02-14,-3.9
389
+ 2025-02-14,INSA,AfD,21,5.5,2025-02-14,-15.5
390
+ 2025-02-14,INSA,BSW,5,0.1,2025-02-14,-4.9
391
+ 2025-02-17,Forsa,SPD,16,0.2,2025-02-17,-15.8
392
+ 2025-02-17,Forsa,CDU/CSU,30,95.5,2025-02-17,65.5
393
+ 2025-02-17,Forsa,Grüne,13,0.1,2025-02-17,-12.9
394
+ 2025-02-17,Forsa,FDP,5,0.1,2025-02-17,-4.9
395
+ 2025-02-17,Forsa,AfD,20,4.4,2025-02-17,-15.6
396
+ 2025-02-17,Forsa,BSW,4,0.1,2025-02-17,-3.9
397
+ 2025-02-17,YouGov,SPD,17,0.2,2025-02-17,-16.8
398
+ 2025-02-17,YouGov,CDU/CSU,27,95.5,2025-02-17,68.5
399
+ 2025-02-17,YouGov,Grüne,12,0.1,2025-02-17,-11.9
400
+ 2025-02-17,YouGov,FDP,4,0.1,2025-02-17,-3.9
401
+ 2025-02-17,YouGov,AfD,20,4.4,2025-02-17,-15.6
402
+ 2025-02-17,YouGov,BSW,5,0.1,2025-02-17,-4.9
403
+ 2025-02-17,INSA,SPD,15,0.2,2025-02-17,-14.8
404
+ 2025-02-17,INSA,CDU/CSU,30,95.5,2025-02-17,65.5
405
+ 2025-02-17,INSA,Grüne,13,0.1,2025-02-17,-12.9
406
+ 2025-02-17,INSA,FDP,4.5,0.1,2025-02-17,-4.4
407
+ 2025-02-17,INSA,AfD,22,4.4,2025-02-17,-17.6
408
+ 2025-02-17,INSA,BSW,5,0.1,2025-02-17,-4.9
409
+ 2025-02-18,Wahlkreisprognose,SPD,14.5,0.2,2025-02-18,-14.3
410
+ 2025-02-18,Wahlkreisprognose,CDU/CSU,30,95.8,2025-02-18,65.8
411
+ 2025-02-18,Wahlkreisprognose,Grüne,12,0.1,2025-02-18,-11.9
412
+ 2025-02-18,Wahlkreisprognose,FDP,4,0.1,2025-02-18,-3.9
413
+ 2025-02-18,Wahlkreisprognose,AfD,20,4.1,2025-02-18,-15.9
414
+ 2025-02-18,Wahlkreisprognose,BSW,5,0.1,2025-02-18,-4.9
415
+ 2025-02-18,Cluster 17,SPD,15,0.2,2025-02-18,-14.8
416
+ 2025-02-18,Cluster 17,CDU/CSU,30,95.8,2025-02-18,65.8
417
+ 2025-02-18,Cluster 17,Grüne,13,0.1,2025-02-18,-12.9
418
+ 2025-02-18,Cluster 17,FDP,4,0.1,2025-02-18,-3.9
419
+ 2025-02-18,Cluster 17,AfD,21,4.1,2025-02-18,-16.9
420
+ 2025-02-18,Cluster 17,BSW,4,0.1,2025-02-18,-3.9
421
+ 2025-02-19,INSA,SPD,15,0.2,2025-02-19,-14.8
422
+ 2025-02-19,INSA,CDU/CSU,30,95.6,2025-02-19,65.6
423
+ 2025-02-19,INSA,Grüne,13,0.1,2025-02-19,-12.9
424
+ 2025-02-19,INSA,FDP,4,0.1,2025-02-19,-3.9
425
+ 2025-02-19,INSA,AfD,21,4.3,2025-02-19,-16.7
426
+ 2025-02-19,INSA,BSW,5,0.1,2025-02-19,-4.9
427
+ 2025-02-19,GMS,SPD,15,0.2,2025-02-19,-14.8
428
+ 2025-02-19,GMS,CDU/CSU,0,95.6,2025-02-19,95.6
429
+ 2025-02-19,GMS,Grüne,13,0.1,2025-02-19,-12.9
430
+ 2025-02-19,GMS,FDP,4,0.1,2025-02-19,-3.9
431
+ 2025-02-19,GMS,AfD,20,4.3,2025-02-19,-15.7
432
+ 2025-02-19,GMS,BSW,4,0.1,2025-02-19,-3.9
433
+ 2025-02-19,Ipsos,SPD,15,0.2,2025-02-19,-14.8
434
+ 2025-02-19,Ipsos,CDU/CSU,31,95.6,2025-02-19,64.6
435
+ 2025-02-19,Ipsos,Grüne,13,0.1,2025-02-19,-12.9
436
+ 2025-02-19,Ipsos,FDP,4.5,0.1,2025-02-19,-4.4
437
+ 2025-02-19,Ipsos,AfD,20,4.3,2025-02-19,-15.7
438
+ 2025-02-19,Ipsos,BSW,4.5,0.1,2025-02-19,-4.4
439
+ 2025-02-19,YouGov,SPD,15.6,0.2,2025-02-19,-15.4
440
+ 2025-02-19,YouGov,CDU/CSU,29.9,95.6,2025-02-19,65.7
441
+ 2025-02-19,YouGov,Grüne,12.7,0.1,2025-02-19,-12.6
442
+ 2025-02-19,YouGov,FDP,4.5,0.1,2025-02-19,-4.4
443
+ 2025-02-19,YouGov,AfD,19.7,4.3,2025-02-19,-15.4
444
+ 2025-02-19,YouGov,BSW,4.6,0.1,2025-02-19,-4.5
445
+ 2025-02-20,Forschungsgruppe Wahlen,SPD,16,0.1,2025-02-20,-15.9
446
+ 2025-02-20,Forschungsgruppe Wahlen,CDU/CSU,28,95.6,2025-02-20,67.6
447
+ 2025-02-20,Forschungsgruppe Wahlen,Grüne,14,0.1,2025-02-20,-13.9
448
+ 2025-02-20,Forschungsgruppe Wahlen,FDP,4,0.1,2025-02-20,-3.9
449
+ 2025-02-20,Forschungsgruppe Wahlen,AfD,21,4.4,2025-02-20,-16.6
450
+ 2025-02-20,Forschungsgruppe Wahlen,BSW,4.5,0.1,2025-02-20,-4.4
451
+ 2025-02-20,Forsa,SPD,15,0.1,2025-02-20,-14.9
452
+ 2025-02-20,Forsa,CDU/CSU,5,95.6,2025-02-20,90.6
453
+ 2025-02-20,Forsa,Grüne,13,0.1,2025-02-20,-12.9
454
+ 2025-02-20,Forsa,FDP,5,0.1,2025-02-20,-4.9
455
+ 2025-02-20,Forsa,AfD,21,4.4,2025-02-20,-16.6
456
+ 2025-02-20,Forsa,BSW,3,0.1,2025-02-20,-2.9
457
+ 2025-02-20,YouGov,SPD,16,0.1,2025-02-20,-15.9
458
+ 2025-02-20,YouGov,CDU/CSU,29,95.6,2025-02-20,66.6
459
+ 2025-02-20,YouGov,Grüne,13,0.1,2025-02-20,-12.9
460
+ 2025-02-20,YouGov,FDP,4,0.1,2025-02-20,-3.9
461
+ 2025-02-20,YouGov,AfD,20,4.4,2025-02-20,-15.6
462
+ 2025-02-20,YouGov,BSW,5,0.1,2025-02-20,-4.9
463
+ 2025-02-20,Allensbach,SPD,14.5,0.1,2025-02-20,-14.4
464
+ 2025-02-20,Allensbach,CDU/CSU,32,95.6,2025-02-20,63.6
465
+ 2025-02-20,Allensbach,Grüne,12,0.1,2025-02-20,-11.9
466
+ 2025-02-20,Allensbach,FDP,4.5,0.1,2025-02-20,-4.4
467
+ 2025-02-20,Allensbach,AfD,20,4.4,2025-02-20,-15.6
468
+ 2025-02-20,Allensbach,BSW,4.5,0.1,2025-02-20,-4.4
469
+ 2025-02-21,Wahlkreisprognose,SPD,14.5,0.2,2025-02-21,-14.3
470
+ 2025-02-21,Wahlkreisprognose,CDU/CSU,29.5,96.8,2025-02-21,67.3
471
+ 2025-02-21,Wahlkreisprognose,Grüne,12,0.1,2025-02-21,-11.9
472
+ 2025-02-21,Wahlkreisprognose,FDP,4.5,0.1,2025-02-21,-4.4
473
+ 2025-02-21,Wahlkreisprognose,AfD,20.5,3.2,2025-02-21,-17.3
474
+ 2025-02-21,Wahlkreisprognose,BSW,4.5,0.1,2025-02-21,-4.4
475
+ 2025-02-21,Ipsos,SPD,16,0.2,2025-02-21,-15.8
476
+ 2025-02-21,Ipsos,CDU/CSU,30,96.8,2025-02-21,66.8
477
+ 2025-02-21,Ipsos,Grüne,12,0.1,2025-02-21,-11.9
478
+ 2025-02-21,Ipsos,FDP,4.5,0.1,2025-02-21,-4.4
479
+ 2025-02-21,Ipsos,AfD,21,3.2,2025-02-21,-17.8
480
+ 2025-02-21,Ipsos,BSW,4.5,0.1,2025-02-21,-4.4
481
+ 2025-02-21,INSA,SPD,15,0.2,2025-02-21,-14.8
482
+ 2025-02-21,INSA,Grüne,12.5,0.1,2025-02-21,-12.4
483
+ 2025-02-21,INSA,FDP,4.5,0.1,2025-02-21,-4.4
484
+ 2025-02-21,INSA,AfD,21,3.2,2025-02-21,-17.8
485
+ 2025-02-21,INSA,BSW,5,0.1,2025-02-21,-4.9
486
+ 2025-02-22,INSA,SPD,15,0.1,2025-02-22,-14.9
487
+ 2025-02-22,INSA,CDU/CSU,29.5,96.7,2025-02-22,67.2
488
+ 2025-02-22,INSA,Grüne,12.5,0.1,2025-02-22,-12.4
489
+ 2025-02-22,INSA,FDP,4.5,0.1,2025-02-22,-4.4
490
+ 2025-02-22,INSA,AfD,21,3.3,2025-02-22,-17.7
491
+ 2025-02-22,INSA,BSW,5,0.1,2025-02-22,-4.9
data/germany-market-odds-timeseries.csv ADDED
@@ -0,0 +1,421 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ date,party,polymarket_pct,volume_usd
2
+ 2024-12-17,CDU/CSU,89.5,11315209
3
+ 2024-12-17,AfD,4.1,18597089
4
+ 2024-12-17,SPD,4,15970451
5
+ 2024-12-17,Grüne,1.4,19221606
6
+ 2024-12-17,BSW,0.4,19989627
7
+ 2024-12-17,FDP,0.4,21222939
8
+ 2024-12-18,CDU/CSU,89.5,11315209
9
+ 2024-12-18,AfD,5,18597089
10
+ 2024-12-18,SPD,4,15970451
11
+ 2024-12-18,Grüne,1.3,19221606
12
+ 2024-12-18,BSW,0.4,19989627
13
+ 2024-12-18,FDP,0.4,21222939
14
+ 2024-12-19,CDU/CSU,88.5,11315209
15
+ 2024-12-19,AfD,5.1,18597089
16
+ 2024-12-19,SPD,3.3,15970451
17
+ 2024-12-19,Grüne,2.2,19221606
18
+ 2024-12-19,BSW,0.4,19989627
19
+ 2024-12-19,FDP,0.4,21222939
20
+ 2024-12-20,CDU/CSU,91,11315209
21
+ 2024-12-20,AfD,4.1,18597089
22
+ 2024-12-20,SPD,2.8,15970451
23
+ 2024-12-20,Grüne,1.9,19221606
24
+ 2024-12-20,BSW,0.3,19989627
25
+ 2024-12-20,FDP,0.3,21222939
26
+ 2024-12-21,CDU/CSU,89.5,11315209
27
+ 2024-12-21,AfD,7.5,18597089
28
+ 2024-12-21,SPD,1.9,15970451
29
+ 2024-12-21,Grüne,1.3,19221606
30
+ 2024-12-21,BSW,0.3,19989627
31
+ 2024-12-21,FDP,0.3,21222939
32
+ 2024-12-22,CDU/CSU,89.5,11315209
33
+ 2024-12-22,AfD,8.3,18597089
34
+ 2024-12-22,SPD,1.3,15970451
35
+ 2024-12-22,Grüne,0.9,19221606
36
+ 2024-12-22,BSW,0.3,19989627
37
+ 2024-12-22,FDP,0.3,21222939
38
+ 2024-12-23,CDU/CSU,85.5,11315209
39
+ 2024-12-23,AfD,13.1,18597089
40
+ 2024-12-23,SPD,0.8,15970451
41
+ 2024-12-23,Grüne,0.4,19221606
42
+ 2024-12-23,BSW,0.3,19989627
43
+ 2024-12-23,FDP,0.3,21222939
44
+ 2024-12-24,CDU/CSU,87.5,11315209
45
+ 2024-12-24,AfD,11.4,18597089
46
+ 2024-12-24,SPD,0.7,15970451
47
+ 2024-12-24,Grüne,0.5,19221606
48
+ 2024-12-24,BSW,0.3,19989627
49
+ 2024-12-24,FDP,0.3,21222939
50
+ 2024-12-25,CDU/CSU,88,11315209
51
+ 2024-12-25,AfD,8.3,18597089
52
+ 2024-12-25,SPD,0.7,15970451
53
+ 2024-12-25,Grüne,0.5,19221606
54
+ 2024-12-25,BSW,0.3,19989627
55
+ 2024-12-25,FDP,0.3,21222939
56
+ 2024-12-26,CDU/CSU,89.5,11315209
57
+ 2024-12-26,AfD,9.3,18597089
58
+ 2024-12-26,SPD,0.7,15970451
59
+ 2024-12-26,Grüne,0.5,19221606
60
+ 2024-12-26,BSW,0.3,19989627
61
+ 2024-12-26,FDP,0.3,21222939
62
+ 2024-12-27,CDU/CSU,89.5,11315209
63
+ 2024-12-27,AfD,9,18597089
64
+ 2024-12-27,SPD,0.7,15970451
65
+ 2024-12-27,Grüne,0.5,19221606
66
+ 2024-12-27,BSW,0.3,19989627
67
+ 2024-12-27,FDP,0.3,21222939
68
+ 2024-12-28,CDU/CSU,90.5,11315209
69
+ 2024-12-28,AfD,7.8,18597089
70
+ 2024-12-28,SPD,0.8,15970451
71
+ 2024-12-28,Grüne,0.5,19221606
72
+ 2024-12-28,BSW,0.3,19989627
73
+ 2024-12-28,FDP,0.3,21222939
74
+ 2024-12-29,CDU/CSU,91.5,11315209
75
+ 2024-12-29,AfD,6.6,18597089
76
+ 2024-12-29,SPD,0.8,15970451
77
+ 2024-12-29,Grüne,0.6,19221606
78
+ 2024-12-29,BSW,0.3,19989627
79
+ 2024-12-29,FDP,0.3,21222939
80
+ 2024-12-30,CDU/CSU,92.5,11315209
81
+ 2024-12-30,AfD,6.3,18597089
82
+ 2024-12-30,SPD,0.8,15970451
83
+ 2024-12-30,Grüne,0.6,19221606
84
+ 2024-12-30,BSW,0.3,19989627
85
+ 2024-12-30,FDP,0.3,21222939
86
+ 2024-12-31,CDU/CSU,92.5,11315209
87
+ 2024-12-31,AfD,6.5,18597089
88
+ 2024-12-31,SPD,0.7,15970451
89
+ 2024-12-31,Grüne,0.5,19221606
90
+ 2024-12-31,BSW,0.3,19989627
91
+ 2024-12-31,FDP,0.3,21222939
92
+ 2025-01-01,CDU/CSU,91.5,11315209
93
+ 2025-01-01,AfD,7.2,18597089
94
+ 2025-01-01,SPD,0.7,15970451
95
+ 2025-01-01,Grüne,0.5,19221606
96
+ 2025-01-01,FDP,0.4,21222939
97
+ 2025-01-01,BSW,0.3,19989627
98
+ 2025-01-02,CDU/CSU,91.5,11315209
99
+ 2025-01-02,AfD,7.1,18597089
100
+ 2025-01-02,SPD,0.7,15970451
101
+ 2025-01-02,Grüne,0.5,19221606
102
+ 2025-01-02,BSW,0.3,19989627
103
+ 2025-01-02,FDP,0.3,21222939
104
+ 2025-01-03,CDU/CSU,91.5,11315209
105
+ 2025-01-03,AfD,6.8,18597089
106
+ 2025-01-03,SPD,0.8,15970451
107
+ 2025-01-03,Grüne,0.4,19221606
108
+ 2025-01-03,BSW,0.3,19989627
109
+ 2025-01-03,FDP,0.3,21222939
110
+ 2025-01-04,CDU/CSU,92.5,11315209
111
+ 2025-01-04,AfD,6.4,18597089
112
+ 2025-01-04,SPD,0.7,15970451
113
+ 2025-01-04,Grüne,0.4,19221606
114
+ 2025-01-04,BSW,0.3,19989627
115
+ 2025-01-04,FDP,0.3,21222939
116
+ 2025-01-05,CDU/CSU,91.5,11315209
117
+ 2025-01-05,AfD,7.2,18597089
118
+ 2025-01-05,SPD,0.9,15970451
119
+ 2025-01-05,Grüne,0.4,19221606
120
+ 2025-01-05,BSW,0.3,19989627
121
+ 2025-01-05,FDP,0.3,21222939
122
+ 2025-01-06,CDU/CSU,89.5,11315209
123
+ 2025-01-06,AfD,9.4,18597089
124
+ 2025-01-06,SPD,0.7,15970451
125
+ 2025-01-06,Grüne,0.4,19221606
126
+ 2025-01-06,BSW,0.4,19989627
127
+ 2025-01-06,FDP,0.3,21222939
128
+ 2025-01-07,CDU/CSU,89.5,11315209
129
+ 2025-01-07,AfD,9,18597089
130
+ 2025-01-07,SPD,0.7,15970451
131
+ 2025-01-07,Grüne,0.4,19221606
132
+ 2025-01-07,BSW,0.3,19989627
133
+ 2025-01-07,FDP,0.3,21222939
134
+ 2025-01-08,CDU/CSU,90.5,11315209
135
+ 2025-01-08,AfD,7.6,18597089
136
+ 2025-01-08,SPD,0.7,15970451
137
+ 2025-01-08,Grüne,0.4,19221606
138
+ 2025-01-08,BSW,0.3,19989627
139
+ 2025-01-08,FDP,0.3,21222939
140
+ 2025-01-09,CDU/CSU,90.5,11315209
141
+ 2025-01-09,AfD,7.5,18597089
142
+ 2025-01-09,SPD,0.7,15970451
143
+ 2025-01-09,Grüne,0.4,19221606
144
+ 2025-01-09,BSW,0.3,19989627
145
+ 2025-01-09,FDP,0.3,21222939
146
+ 2025-01-10,CDU/CSU,89.5,11315209
147
+ 2025-01-10,AfD,8.3,18597089
148
+ 2025-01-10,SPD,0.8,15970451
149
+ 2025-01-10,Grüne,0.4,19221606
150
+ 2025-01-10,BSW,0.4,19989627
151
+ 2025-01-10,FDP,0.4,21222939
152
+ 2025-01-11,CDU/CSU,88.5,11315209
153
+ 2025-01-11,AfD,8.4,18597089
154
+ 2025-01-11,SPD,0.8,15970451
155
+ 2025-01-11,Grüne,0.4,19221606
156
+ 2025-01-11,BSW,0.4,19989627
157
+ 2025-01-11,FDP,0.4,21222939
158
+ 2025-01-12,CDU/CSU,88.5,11315209
159
+ 2025-01-12,AfD,9.4,18597089
160
+ 2025-01-12,SPD,0.8,15970451
161
+ 2025-01-12,Grüne,0.4,19221606
162
+ 2025-01-12,BSW,0.4,19989627
163
+ 2025-01-12,FDP,0.4,21222939
164
+ 2025-01-13,CDU/CSU,88.5,11315209
165
+ 2025-01-13,AfD,10,18597089
166
+ 2025-01-13,SPD,0.8,15970451
167
+ 2025-01-13,Grüne,0.4,19221606
168
+ 2025-01-13,BSW,0.4,19989627
169
+ 2025-01-13,FDP,0.4,21222939
170
+ 2025-01-14,CDU/CSU,89.5,11315209
171
+ 2025-01-14,AfD,8.5,18597089
172
+ 2025-01-14,SPD,0.8,15970451
173
+ 2025-01-14,Grüne,0.4,19221606
174
+ 2025-01-14,BSW,0.4,19989627
175
+ 2025-01-14,FDP,0.4,21222939
176
+ 2025-01-15,CDU/CSU,90,11315209
177
+ 2025-01-15,AfD,8.2,18597089
178
+ 2025-01-15,SPD,0.8,15970451
179
+ 2025-01-15,Grüne,0.4,19221606
180
+ 2025-01-15,BSW,0.4,19989627
181
+ 2025-01-15,FDP,0.4,21222939
182
+ 2025-01-16,CDU/CSU,89.5,11315209
183
+ 2025-01-16,AfD,8.8,18597089
184
+ 2025-01-16,SPD,0.8,15970451
185
+ 2025-01-16,Grüne,0.5,19221606
186
+ 2025-01-16,BSW,0.4,19989627
187
+ 2025-01-16,FDP,0.4,21222939
188
+ 2025-01-17,CDU/CSU,89.5,11315209
189
+ 2025-01-17,AfD,8.4,18597089
190
+ 2025-01-17,SPD,0.8,15970451
191
+ 2025-01-17,Grüne,0.5,19221606
192
+ 2025-01-17,FDP,0.4,21222939
193
+ 2025-01-17,BSW,0.3,19989627
194
+ 2025-01-18,CDU/CSU,89.5,11315209
195
+ 2025-01-18,AfD,8.7,18597089
196
+ 2025-01-18,SPD,0.8,15970451
197
+ 2025-01-18,Grüne,0.5,19221606
198
+ 2025-01-18,FDP,0.4,21222939
199
+ 2025-01-18,BSW,0.3,19989627
200
+ 2025-01-19,CDU/CSU,89.5,11315209
201
+ 2025-01-19,AfD,8.4,18597089
202
+ 2025-01-19,SPD,0.8,15970451
203
+ 2025-01-19,Grüne,0.5,19221606
204
+ 2025-01-19,FDP,0.4,21222939
205
+ 2025-01-19,BSW,0.3,19989627
206
+ 2025-01-20,CDU/CSU,90.5,11315209
207
+ 2025-01-20,AfD,8.2,18597089
208
+ 2025-01-20,SPD,0.7,15970451
209
+ 2025-01-20,Grüne,0.4,19221606
210
+ 2025-01-20,FDP,0.4,21222939
211
+ 2025-01-20,BSW,0.3,19989627
212
+ 2025-01-21,CDU/CSU,91.5,11315209
213
+ 2025-01-21,AfD,6.6,18597089
214
+ 2025-01-21,SPD,0.6,15970451
215
+ 2025-01-21,Grüne,0.4,19221606
216
+ 2025-01-21,FDP,0.4,21222939
217
+ 2025-01-21,BSW,0.3,19989627
218
+ 2025-01-22,CDU/CSU,92.5,11315209
219
+ 2025-01-22,AfD,6.6,18597089
220
+ 2025-01-22,SPD,0.4,15970451
221
+ 2025-01-22,FDP,0.4,21222939
222
+ 2025-01-22,Grüne,0.3,19221606
223
+ 2025-01-22,BSW,0.3,19989627
224
+ 2025-01-23,CDU/CSU,91.5,11315209
225
+ 2025-01-23,AfD,7.5,18597089
226
+ 2025-01-23,BSW,0.4,19989627
227
+ 2025-01-23,SPD,0.4,15970451
228
+ 2025-01-23,FDP,0.4,21222939
229
+ 2025-01-23,Grüne,0.3,19221606
230
+ 2025-01-24,CDU/CSU,91.5,11315209
231
+ 2025-01-24,AfD,7.4,18597089
232
+ 2025-01-24,BSW,0.4,19989627
233
+ 2025-01-24,SPD,0.4,15970451
234
+ 2025-01-24,FDP,0.4,21222939
235
+ 2025-01-24,Grüne,0.3,19221606
236
+ 2025-01-25,CDU/CSU,94.5,11315209
237
+ 2025-01-25,AfD,4.1,18597089
238
+ 2025-01-25,BSW,0.4,19989627
239
+ 2025-01-25,SPD,0.4,15970451
240
+ 2025-01-25,FDP,0.4,21222939
241
+ 2025-01-25,Grüne,0.3,19221606
242
+ 2025-01-26,CDU/CSU,94.5,11315209
243
+ 2025-01-26,AfD,3.5,18597089
244
+ 2025-01-26,BSW,0.4,19989627
245
+ 2025-01-26,SPD,0.4,15970451
246
+ 2025-01-26,FDP,0.4,21222939
247
+ 2025-01-26,Grüne,0.3,19221606
248
+ 2025-01-27,CDU/CSU,93.5,11315209
249
+ 2025-01-27,AfD,5.6,18597089
250
+ 2025-01-27,BSW,0.4,19989627
251
+ 2025-01-27,SPD,0.4,15970451
252
+ 2025-01-27,FDP,0.4,21222939
253
+ 2025-01-27,Grüne,0.3,19221606
254
+ 2025-01-28,CDU/CSU,93.5,11315209
255
+ 2025-01-28,AfD,5.5,18597089
256
+ 2025-01-28,BSW,0.4,19989627
257
+ 2025-01-28,SPD,0.4,15970451
258
+ 2025-01-28,FDP,0.4,21222939
259
+ 2025-01-28,Grüne,0.3,19221606
260
+ 2025-01-29,CDU/CSU,92.5,11315209
261
+ 2025-01-29,AfD,5.9,18597089
262
+ 2025-01-29,BSW,0.4,19989627
263
+ 2025-01-29,SPD,0.4,15970451
264
+ 2025-01-29,FDP,0.4,21222939
265
+ 2025-01-29,Grüne,0.3,19221606
266
+ 2025-01-30,CDU/CSU,91.5,11315209
267
+ 2025-01-30,AfD,7.2,18597089
268
+ 2025-01-30,BSW,0.4,19989627
269
+ 2025-01-30,SPD,0.4,15970451
270
+ 2025-01-30,FDP,0.4,21222939
271
+ 2025-01-30,Grüne,0.3,19221606
272
+ 2025-01-31,CDU/CSU,91.5,11315209
273
+ 2025-01-31,AfD,7.3,18597089
274
+ 2025-01-31,SPD,0.4,15970451
275
+ 2025-01-31,FDP,0.4,21222939
276
+ 2025-01-31,Grüne,0.3,19221606
277
+ 2025-01-31,BSW,0.3,19989627
278
+ 2025-02-01,CDU/CSU,91.5,11315209
279
+ 2025-02-01,AfD,8.1,18597089
280
+ 2025-02-01,SPD,0.5,15970451
281
+ 2025-02-01,Grüne,0.3,19221606
282
+ 2025-02-01,BSW,0.2,19989627
283
+ 2025-02-01,FDP,0.2,21222939
284
+ 2025-02-02,CDU/CSU,91.5,11315209
285
+ 2025-02-02,AfD,8,18597089
286
+ 2025-02-02,SPD,0.4,15970451
287
+ 2025-02-02,Grüne,0.3,19221606
288
+ 2025-02-02,BSW,0.2,19989627
289
+ 2025-02-02,FDP,0.1,21222939
290
+ 2025-02-03,CDU/CSU,90.5,11315209
291
+ 2025-02-03,AfD,8.6,18597089
292
+ 2025-02-03,SPD,1,15970451
293
+ 2025-02-03,Grüne,0.3,19221606
294
+ 2025-02-03,BSW,0.1,19989627
295
+ 2025-02-03,FDP,0.1,21222939
296
+ 2025-02-04,CDU/CSU,90.5,11315209
297
+ 2025-02-04,AfD,9.1,18597089
298
+ 2025-02-04,SPD,0.4,15970451
299
+ 2025-02-04,Grüne,0.3,19221606
300
+ 2025-02-04,BSW,0.1,19989627
301
+ 2025-02-04,FDP,0.1,21222939
302
+ 2025-02-05,CDU/CSU,90.5,11315209
303
+ 2025-02-05,AfD,9.2,18597089
304
+ 2025-02-05,Grüne,0.3,19221606
305
+ 2025-02-05,SPD,0.3,15970451
306
+ 2025-02-05,BSW,0.1,19989627
307
+ 2025-02-05,FDP,0.1,21222939
308
+ 2025-02-06,CDU/CSU,90.5,11315209
309
+ 2025-02-06,AfD,8.5,18597089
310
+ 2025-02-06,Grüne,0.3,19221606
311
+ 2025-02-06,SPD,0.3,15970451
312
+ 2025-02-06,BSW,0.1,19989627
313
+ 2025-02-06,FDP,0.1,21222939
314
+ 2025-02-07,CDU/CSU,91,11315209
315
+ 2025-02-07,AfD,8.2,18597089
316
+ 2025-02-07,Grüne,0.3,19221606
317
+ 2025-02-07,SPD,0.3,15970451
318
+ 2025-02-07,BSW,0.1,19989627
319
+ 2025-02-07,FDP,0.1,21222939
320
+ 2025-02-08,CDU/CSU,91.5,11315209
321
+ 2025-02-08,AfD,6.9,18597089
322
+ 2025-02-08,Grüne,0.3,19221606
323
+ 2025-02-08,SPD,0.3,15970451
324
+ 2025-02-08,BSW,0.1,19989627
325
+ 2025-02-08,FDP,0.1,21222939
326
+ 2025-02-09,CDU/CSU,93.5,11315209
327
+ 2025-02-09,AfD,6.8,18597089
328
+ 2025-02-09,Grüne,0.2,19221606
329
+ 2025-02-09,SPD,0.2,15970451
330
+ 2025-02-09,BSW,0.1,19989627
331
+ 2025-02-09,FDP,0.1,21222939
332
+ 2025-02-10,CDU/CSU,92.5,11315209
333
+ 2025-02-10,AfD,7.1,18597089
334
+ 2025-02-10,SPD,0.3,15970451
335
+ 2025-02-10,Grüne,0.1,19221606
336
+ 2025-02-10,BSW,0.1,19989627
337
+ 2025-02-10,FDP,0.1,21222939
338
+ 2025-02-11,CDU/CSU,93.5,11315209
339
+ 2025-02-11,AfD,6.8,18597089
340
+ 2025-02-11,SPD,0.3,15970451
341
+ 2025-02-11,Grüne,0.1,19221606
342
+ 2025-02-11,BSW,0.1,19989627
343
+ 2025-02-11,FDP,0.1,21222939
344
+ 2025-02-12,CDU/CSU,92.5,11315209
345
+ 2025-02-12,AfD,6.9,18597089
346
+ 2025-02-12,SPD,0.3,15970451
347
+ 2025-02-12,Grüne,0.1,19221606
348
+ 2025-02-12,BSW,0.1,19989627
349
+ 2025-02-12,FDP,0.1,21222939
350
+ 2025-02-13,CDU/CSU,93.5,11315209
351
+ 2025-02-13,AfD,6,18597089
352
+ 2025-02-13,SPD,0.2,15970451
353
+ 2025-02-13,Grüne,0.1,19221606
354
+ 2025-02-13,BSW,0.1,19989627
355
+ 2025-02-13,FDP,0.1,21222939
356
+ 2025-02-14,CDU/CSU,94.5,11315209
357
+ 2025-02-14,AfD,5.5,18597089
358
+ 2025-02-14,SPD,0.2,15970451
359
+ 2025-02-14,Grüne,0.1,19221606
360
+ 2025-02-14,BSW,0.1,19989627
361
+ 2025-02-14,FDP,0.1,21222939
362
+ 2025-02-15,CDU/CSU,94.5,11315209
363
+ 2025-02-15,AfD,5.5,18597089
364
+ 2025-02-15,SPD,0.2,15970451
365
+ 2025-02-15,Grüne,0.1,19221606
366
+ 2025-02-15,BSW,0.1,19989627
367
+ 2025-02-15,FDP,0.1,21222939
368
+ 2025-02-16,CDU/CSU,95.5,11315209
369
+ 2025-02-16,AfD,4.6,18597089
370
+ 2025-02-16,SPD,0.2,15970451
371
+ 2025-02-16,Grüne,0.1,19221606
372
+ 2025-02-16,BSW,0.1,19989627
373
+ 2025-02-16,FDP,0.1,21222939
374
+ 2025-02-17,CDU/CSU,95.5,11315209
375
+ 2025-02-17,AfD,4.4,18597089
376
+ 2025-02-17,SPD,0.2,15970451
377
+ 2025-02-17,Grüne,0.1,19221606
378
+ 2025-02-17,BSW,0.1,19989627
379
+ 2025-02-17,FDP,0.1,21222939
380
+ 2025-02-18,CDU/CSU,95.8,11315209
381
+ 2025-02-18,AfD,4.1,18597089
382
+ 2025-02-18,SPD,0.2,15970451
383
+ 2025-02-18,Grüne,0.1,19221606
384
+ 2025-02-18,BSW,0.1,19989627
385
+ 2025-02-18,FDP,0.1,21222939
386
+ 2025-02-19,CDU/CSU,95.6,11315209
387
+ 2025-02-19,AfD,4.3,18597089
388
+ 2025-02-19,SPD,0.2,15970451
389
+ 2025-02-19,Grüne,0.1,19221606
390
+ 2025-02-19,BSW,0.1,19989627
391
+ 2025-02-19,FDP,0.1,21222939
392
+ 2025-02-20,CDU/CSU,95.6,11315209
393
+ 2025-02-20,AfD,4.4,18597089
394
+ 2025-02-20,Grüne,0.1,19221606
395
+ 2025-02-20,BSW,0.1,19989627
396
+ 2025-02-20,SPD,0.1,15970451
397
+ 2025-02-20,FDP,0.1,21222939
398
+ 2025-02-21,CDU/CSU,96.8,11315209
399
+ 2025-02-21,AfD,3.2,18597089
400
+ 2025-02-21,SPD,0.2,15970451
401
+ 2025-02-21,Grüne,0.1,19221606
402
+ 2025-02-21,BSW,0.1,19989627
403
+ 2025-02-21,FDP,0.1,21222939
404
+ 2025-02-22,CDU/CSU,96.7,11315209
405
+ 2025-02-22,AfD,3.3,18597089
406
+ 2025-02-22,Grüne,0.1,19221606
407
+ 2025-02-22,BSW,0.1,19989627
408
+ 2025-02-22,SPD,0.1,15970451
409
+ 2025-02-22,FDP,0.1,21222939
410
+ 2025-02-23,CDU/CSU,95.5,11315209
411
+ 2025-02-23,AfD,4.6,18597089
412
+ 2025-02-23,Grüne,0.1,19221606
413
+ 2025-02-23,BSW,0.1,19989627
414
+ 2025-02-23,SPD,0.1,15970451
415
+ 2025-02-23,FDP,0.1,21222939
416
+ 2025-02-24,CDU/CSU,99.9,11315209
417
+ 2025-02-24,AfD,0.1,18597089
418
+ 2025-02-24,Grüne,0.1,19221606
419
+ 2025-02-24,BSW,0.1,19989627
420
+ 2025-02-24,SPD,0.1,15970451
421
+ 2025-02-24,FDP,0.1,21222939
data/germany-poly-raw.json ADDED
@@ -0,0 +1 @@
 
 
1
+ {"title":"Germany Parliamentary Election Winner","slug":"germany-parliamentary-election","startDate":"2024-12-16T18:29:45.287811Z","endDate":"2025-02-23T12:00:00Z","markets":7,"odds":[{"candidate":"CDU/CSU","volume":11315209.134728,"closed":true,"history":[{"t":1734393604,"p":0.895},{"t":1734480003,"p":0.895},{"t":1734566403,"p":0.885},{"t":1734652804,"p":0.91},{"t":1734739203,"p":0.895},{"t":1734825604,"p":0.895},{"t":1734912004,"p":0.855},{"t":1734998403,"p":0.875},{"t":1735084803,"p":0.88},{"t":1735171204,"p":0.895},{"t":1735257603,"p":0.895},{"t":1735344003,"p":0.905},{"t":1735430403,"p":0.915},{"t":1735516803,"p":0.925},{"t":1735603204,"p":0.925},{"t":1735689604,"p":0.915},{"t":1735776003,"p":0.915},{"t":1735862404,"p":0.915},{"t":1735948803,"p":0.925},{"t":1736035203,"p":0.915},{"t":1736121603,"p":0.895},{"t":1736208004,"p":0.895},{"t":1736294403,"p":0.905},{"t":1736380803,"p":0.905},{"t":1736467204,"p":0.895},{"t":1736553604,"p":0.885},{"t":1736640004,"p":0.885},{"t":1736726404,"p":0.885},{"t":1736812803,"p":0.895},{"t":1736899203,"p":0.9},{"t":1736985604,"p":0.895},{"t":1737072004,"p":0.895},{"t":1737158404,"p":0.895},{"t":1737244804,"p":0.895},{"t":1737331204,"p":0.905},{"t":1737417603,"p":0.915},{"t":1737504003,"p":0.925},{"t":1737590404,"p":0.915},{"t":1737676803,"p":0.915},{"t":1737763205,"p":0.945},{"t":1737849604,"p":0.945},{"t":1737936004,"p":0.935},{"t":1738022404,"p":0.935},{"t":1738108804,"p":0.925},{"t":1738195205,"p":0.915},{"t":1738281604,"p":0.915},{"t":1738368005,"p":0.915},{"t":1738454404,"p":0.915},{"t":1738540805,"p":0.905},{"t":1738627204,"p":0.905},{"t":1738713604,"p":0.905},{"t":1738800005,"p":0.905},{"t":1738886404,"p":0.91},{"t":1738972804,"p":0.915},{"t":1739059206,"p":0.935},{"t":1739145605,"p":0.925},{"t":1739232004,"p":0.935},{"t":1739318404,"p":0.925},{"t":1739404804,"p":0.935},{"t":1739491205,"p":0.945},{"t":1739577604,"p":0.945},{"t":1739664004,"p":0.955},{"t":1739750404,"p":0.955},{"t":1739836804,"p":0.958},{"t":1739923204,"p":0.9555},{"t":1740009604,"p":0.9555},{"t":1740096005,"p":0.9675},{"t":1740182405,"p":0.967},{"t":1740268804,"p":0.955},{"t":1740355204,"p":0.9985}]},{"candidate":"AfD","volume":18597089.079314,"closed":true,"history":[{"t":1734393604,"p":0.0405},{"t":1734480003,"p":0.0495},{"t":1734566403,"p":0.0505},{"t":1734652804,"p":0.0405},{"t":1734739203,"p":0.0745},{"t":1734825604,"p":0.083},{"t":1734912004,"p":0.131},{"t":1734998403,"p":0.1135},{"t":1735084803,"p":0.083},{"t":1735171204,"p":0.093},{"t":1735257603,"p":0.09},{"t":1735344003,"p":0.078},{"t":1735430403,"p":0.066},{"t":1735516803,"p":0.0625},{"t":1735603204,"p":0.0645},{"t":1735689604,"p":0.0715},{"t":1735776003,"p":0.0705},{"t":1735862404,"p":0.068},{"t":1735948803,"p":0.0635},{"t":1736035203,"p":0.0715},{"t":1736121603,"p":0.094},{"t":1736208004,"p":0.0895},{"t":1736294403,"p":0.0755},{"t":1736380803,"p":0.075},{"t":1736467204,"p":0.0825},{"t":1736553604,"p":0.084},{"t":1736640004,"p":0.0935},{"t":1736726404,"p":0.0995},{"t":1736812803,"p":0.0845},{"t":1736899203,"p":0.082},{"t":1736985604,"p":0.088},{"t":1737072004,"p":0.0835},{"t":1737158404,"p":0.087},{"t":1737244804,"p":0.084},{"t":1737331204,"p":0.0815},{"t":1737417603,"p":0.0655},{"t":1737504003,"p":0.066},{"t":1737590404,"p":0.0745},{"t":1737676803,"p":0.074},{"t":1737763205,"p":0.041},{"t":1737849604,"p":0.035},{"t":1737936004,"p":0.056},{"t":1738022404,"p":0.0545},{"t":1738108804,"p":0.0585},{"t":1738195205,"p":0.0715},{"t":1738281604,"p":0.073},{"t":1738368005,"p":0.081},{"t":1738454404,"p":0.0795},{"t":1738540805,"p":0.0855},{"t":1738627204,"p":0.0905},{"t":1738713604,"p":0.092},{"t":1738800005,"p":0.0845},{"t":1738886404,"p":0.0815},{"t":1738972804,"p":0.069},{"t":1739059206,"p":0.0675},{"t":1739145605,"p":0.0705},{"t":1739232004,"p":0.0675},{"t":1739318404,"p":0.0685},{"t":1739404804,"p":0.06},{"t":1739491205,"p":0.055},{"t":1739577604,"p":0.0545},{"t":1739664004,"p":0.046},{"t":1739750404,"p":0.044},{"t":1739836804,"p":0.0405},{"t":1739923204,"p":0.0425},{"t":1740009604,"p":0.044},{"t":1740096005,"p":0.0315},{"t":1740182405,"p":0.033},{"t":1740268804,"p":0.046},{"t":1740355204,"p":0.0005}]},{"candidate":"Greens","volume":19221605.525162,"closed":true,"history":[{"t":1734393604,"p":0.014},{"t":1734480003,"p":0.013},{"t":1734566403,"p":0.0215},{"t":1734652804,"p":0.0185},{"t":1734739203,"p":0.013},{"t":1734825604,"p":0.009},{"t":1734912004,"p":0.004},{"t":1734998403,"p":0.0045},{"t":1735084803,"p":0.0045},{"t":1735171204,"p":0.0045},{"t":1735257603,"p":0.0045},{"t":1735344003,"p":0.0045},{"t":1735430403,"p":0.006},{"t":1735516803,"p":0.0055},{"t":1735603204,"p":0.0045},{"t":1735689604,"p":0.0045},{"t":1735776003,"p":0.0045},{"t":1735862404,"p":0.0035},{"t":1735948803,"p":0.0035},{"t":1736035203,"p":0.0035},{"t":1736121603,"p":0.0035},{"t":1736208004,"p":0.0035},{"t":1736294403,"p":0.0035},{"t":1736380803,"p":0.0035},{"t":1736467204,"p":0.0035},{"t":1736553604,"p":0.0035},{"t":1736640004,"p":0.0035},{"t":1736726404,"p":0.0035},{"t":1736812803,"p":0.0035},{"t":1736899203,"p":0.0035},{"t":1736985604,"p":0.0045},{"t":1737072004,"p":0.0045},{"t":1737158404,"p":0.0045},{"t":1737244804,"p":0.0045},{"t":1737331204,"p":0.0035},{"t":1737417603,"p":0.0035},{"t":1737504003,"p":0.0025},{"t":1737590404,"p":0.0025},{"t":1737676803,"p":0.0025},{"t":1737763205,"p":0.0025},{"t":1737849604,"p":0.0025},{"t":1737936004,"p":0.0025},{"t":1738022404,"p":0.0025},{"t":1738108804,"p":0.0025},{"t":1738195205,"p":0.0025},{"t":1738281604,"p":0.0025},{"t":1738368005,"p":0.0025},{"t":1738454404,"p":0.0025},{"t":1738540805,"p":0.0025},{"t":1738627204,"p":0.0025},{"t":1738713604,"p":0.0025},{"t":1738800005,"p":0.0025},{"t":1738886404,"p":0.0025},{"t":1738972804,"p":0.0025},{"t":1739059206,"p":0.0015},{"t":1739145605,"p":0.0005},{"t":1739232004,"p":0.0005},{"t":1739318404,"p":0.0005},{"t":1739404804,"p":0.0005},{"t":1739491205,"p":0.0005},{"t":1739577604,"p":0.0005},{"t":1739664004,"p":0.0005},{"t":1739750404,"p":0.0005},{"t":1739836804,"p":0.0005},{"t":1739923204,"p":0.0005},{"t":1740009604,"p":0.0005},{"t":1740096005,"p":0.0005},{"t":1740182405,"p":0.0005},{"t":1740268804,"p":0.0005},{"t":1740355204,"p":0.0005}]},{"candidate":"BSW","volume":19989626.707533,"closed":true,"history":[{"t":1734393604,"p":0.0035},{"t":1734480003,"p":0.0035},{"t":1734566403,"p":0.0035},{"t":1734652804,"p":0.0025},{"t":1734739203,"p":0.0025},{"t":1734825604,"p":0.0025},{"t":1734912004,"p":0.0025},{"t":1734998403,"p":0.0025},{"t":1735084803,"p":0.0025},{"t":1735171204,"p":0.0025},{"t":1735257603,"p":0.0025},{"t":1735344003,"p":0.0025},{"t":1735430403,"p":0.0025},{"t":1735516803,"p":0.0025},{"t":1735603204,"p":0.0025},{"t":1735689604,"p":0.0025},{"t":1735776003,"p":0.0025},{"t":1735862404,"p":0.0025},{"t":1735948803,"p":0.0025},{"t":1736035203,"p":0.0025},{"t":1736121603,"p":0.0035},{"t":1736208004,"p":0.0025},{"t":1736294403,"p":0.0025},{"t":1736380803,"p":0.0025},{"t":1736467204,"p":0.0035},{"t":1736553604,"p":0.0035},{"t":1736640004,"p":0.0035},{"t":1736726404,"p":0.0035},{"t":1736812803,"p":0.0035},{"t":1736899203,"p":0.0035},{"t":1736985604,"p":0.0035},{"t":1737072004,"p":0.0025},{"t":1737158404,"p":0.0025},{"t":1737244804,"p":0.0025},{"t":1737331204,"p":0.0025},{"t":1737417603,"p":0.0025},{"t":1737504003,"p":0.0025},{"t":1737590404,"p":0.0035},{"t":1737676803,"p":0.0035},{"t":1737763205,"p":0.0035},{"t":1737849604,"p":0.0035},{"t":1737936004,"p":0.0035},{"t":1738022404,"p":0.0035},{"t":1738108804,"p":0.0035},{"t":1738195205,"p":0.0035},{"t":1738281604,"p":0.0025},{"t":1738368005,"p":0.0015},{"t":1738454404,"p":0.0015},{"t":1738540805,"p":0.0005},{"t":1738627204,"p":0.0005},{"t":1738713604,"p":0.0005},{"t":1738800005,"p":0.0005},{"t":1738886404,"p":0.0005},{"t":1738972804,"p":0.0005},{"t":1739059206,"p":0.0005},{"t":1739145605,"p":0.0005},{"t":1739232004,"p":0.0005},{"t":1739318404,"p":0.0005},{"t":1739404804,"p":0.0005},{"t":1739491205,"p":0.0005},{"t":1739577604,"p":0.0005},{"t":1739664004,"p":0.0005},{"t":1739750404,"p":0.0005},{"t":1739836804,"p":0.0005},{"t":1739923204,"p":0.0005},{"t":1740009604,"p":0.0005},{"t":1740096005,"p":0.0005},{"t":1740182405,"p":0.0005},{"t":1740268804,"p":0.0005},{"t":1740355204,"p":0.0005}]},{"candidate":"Other","volume":28301064.519864,"closed":true,"history":[{"t":1734393604,"p":0.003},{"t":1734480003,"p":0.0035},{"t":1734566403,"p":0.0035},{"t":1734652804,"p":0.0035},{"t":1734739203,"p":0.0025},{"t":1734825604,"p":0.0025},{"t":1734912004,"p":0.0025},{"t":1734998403,"p":0.0025},{"t":1735084803,"p":0.0025},{"t":1735171204,"p":0.0025},{"t":1735257603,"p":0.0025},{"t":1735344003,"p":0.0025},{"t":1735430403,"p":0.0025},{"t":1735516803,"p":0.0025},{"t":1735603204,"p":0.0025},{"t":1735689604,"p":0.0035},{"t":1735776003,"p":0.0025},{"t":1735862404,"p":0.0025},{"t":1735948803,"p":0.0025},{"t":1736035203,"p":0.0025},{"t":1736121603,"p":0.0025},{"t":1736208004,"p":0.0025},{"t":1736294403,"p":0.0025},{"t":1736380803,"p":0.0035},{"t":1736467204,"p":0.0035},{"t":1736553604,"p":0.0035},{"t":1736640004,"p":0.0035},{"t":1736726404,"p":0.0035},{"t":1736812803,"p":0.0035},{"t":1736899203,"p":0.0035},{"t":1736985604,"p":0.0035},{"t":1737072004,"p":0.0035},{"t":1737158404,"p":0.0035},{"t":1737244804,"p":0.0035},{"t":1737331204,"p":0.0035},{"t":1737417603,"p":0.0035},{"t":1737504003,"p":0.0035},{"t":1737590404,"p":0.0035},{"t":1737676803,"p":0.0035},{"t":1737763205,"p":0.0035},{"t":1737849604,"p":0.0035},{"t":1737936004,"p":0.0035},{"t":1738022404,"p":0.0035},{"t":1738108804,"p":0.0035},{"t":1738195205,"p":0.0035},{"t":1738281604,"p":0.0035},{"t":1738368005,"p":0.0015},{"t":1738454404,"p":0.0025},{"t":1738540805,"p":0.0025},{"t":1738627204,"p":0.0025},{"t":1738713604,"p":0.0025},{"t":1738800005,"p":0.0025},{"t":1738886404,"p":0.0025},{"t":1738972804,"p":0.0025},{"t":1739059206,"p":0.0015},{"t":1739145605,"p":0.0005},{"t":1739232004,"p":0.0005},{"t":1739318404,"p":0.0005},{"t":1739404804,"p":0.0005},{"t":1739491205,"p":0.0005},{"t":1739577604,"p":0.0005},{"t":1739664004,"p":0.0005},{"t":1739750404,"p":0.0005},{"t":1739836804,"p":0.0005},{"t":1739923204,"p":0.0005},{"t":1740009604,"p":0.0005},{"t":1740096005,"p":0.0005},{"t":1740182405,"p":0.0005},{"t":1740268804,"p":0.0005},{"t":1740355204,"p":0.0005}]},{"candidate":"SPD","volume":15970450.902698,"closed":true,"history":[{"t":1734393604,"p":0.0395},{"t":1734480003,"p":0.0395},{"t":1734566403,"p":0.0325},{"t":1734652804,"p":0.0275},{"t":1734739203,"p":0.0185},{"t":1734825604,"p":0.013},{"t":1734912004,"p":0.0075},{"t":1734998403,"p":0.0065},{"t":1735084803,"p":0.007},{"t":1735171204,"p":0.007},{"t":1735257603,"p":0.007},{"t":1735344003,"p":0.0075},{"t":1735430403,"p":0.0075},{"t":1735516803,"p":0.0075},{"t":1735603204,"p":0.0065},{"t":1735689604,"p":0.007},{"t":1735776003,"p":0.0065},{"t":1735862404,"p":0.0075},{"t":1735948803,"p":0.0065},{"t":1736035203,"p":0.009},{"t":1736121603,"p":0.0065},{"t":1736208004,"p":0.0065},{"t":1736294403,"p":0.0065},{"t":1736380803,"p":0.0065},{"t":1736467204,"p":0.0075},{"t":1736553604,"p":0.0075},{"t":1736640004,"p":0.0075},{"t":1736726404,"p":0.0075},{"t":1736812803,"p":0.0075},{"t":1736899203,"p":0.0075},{"t":1736985604,"p":0.0075},{"t":1737072004,"p":0.0075},{"t":1737158404,"p":0.0075},{"t":1737244804,"p":0.0075},{"t":1737331204,"p":0.0065},{"t":1737417603,"p":0.0055},{"t":1737504003,"p":0.0035},{"t":1737590404,"p":0.0035},{"t":1737676803,"p":0.0035},{"t":1737763205,"p":0.0035},{"t":1737849604,"p":0.0035},{"t":1737936004,"p":0.0035},{"t":1738022404,"p":0.0035},{"t":1738108804,"p":0.0035},{"t":1738195205,"p":0.0035},{"t":1738281604,"p":0.0035},{"t":1738368005,"p":0.005},{"t":1738454404,"p":0.0035},{"t":1738540805,"p":0.0095},{"t":1738627204,"p":0.0035},{"t":1738713604,"p":0.0025},{"t":1738800005,"p":0.0025},{"t":1738886404,"p":0.0025},{"t":1738972804,"p":0.0025},{"t":1739059206,"p":0.0015},{"t":1739145605,"p":0.0025},{"t":1739232004,"p":0.0025},{"t":1739318404,"p":0.0025},{"t":1739404804,"p":0.002},{"t":1739491205,"p":0.0015},{"t":1739577604,"p":0.0015},{"t":1739664004,"p":0.0015},{"t":1739750404,"p":0.0015},{"t":1739836804,"p":0.0015},{"t":1739923204,"p":0.0015},{"t":1740009604,"p":0.0005},{"t":1740096005,"p":0.0015},{"t":1740182405,"p":0.0005},{"t":1740268804,"p":0.0005},{"t":1740355204,"p":0.0005}]},{"candidate":"FDP","volume":21222938.680058,"closed":true,"history":[{"t":1734393604,"p":0.0035},{"t":1734480003,"p":0.0035},{"t":1734566403,"p":0.0035},{"t":1734652804,"p":0.0025},{"t":1734739203,"p":0.0025},{"t":1734825604,"p":0.0025},{"t":1734912004,"p":0.0025},{"t":1734998403,"p":0.0025},{"t":1735084803,"p":0.0025},{"t":1735171204,"p":0.0025},{"t":1735257603,"p":0.0025},{"t":1735344003,"p":0.0025},{"t":1735430403,"p":0.0025},{"t":1735516803,"p":0.0025},{"t":1735603204,"p":0.0025},{"t":1735689604,"p":0.0035},{"t":1735776003,"p":0.0025},{"t":1735862404,"p":0.0025},{"t":1735948803,"p":0.0025},{"t":1736035203,"p":0.0025},{"t":1736121603,"p":0.0025},{"t":1736208004,"p":0.0025},{"t":1736294403,"p":0.0025},{"t":1736380803,"p":0.0025},{"t":1736467204,"p":0.004},{"t":1736553604,"p":0.0035},{"t":1736640004,"p":0.0035},{"t":1736726404,"p":0.0035},{"t":1736812803,"p":0.0035},{"t":1736899203,"p":0.0035},{"t":1736985604,"p":0.0035},{"t":1737072004,"p":0.0035},{"t":1737158404,"p":0.0035},{"t":1737244804,"p":0.0035},{"t":1737331204,"p":0.0035},{"t":1737417603,"p":0.0035},{"t":1737504003,"p":0.0035},{"t":1737590404,"p":0.0035},{"t":1737676803,"p":0.0035},{"t":1737763205,"p":0.0035},{"t":1737849604,"p":0.0035},{"t":1737936004,"p":0.0035},{"t":1738022404,"p":0.0035},{"t":1738108804,"p":0.0035},{"t":1738195205,"p":0.0035},{"t":1738281604,"p":0.0035},{"t":1738368005,"p":0.0015},{"t":1738454404,"p":0.0005},{"t":1738540805,"p":0.0005},{"t":1738627204,"p":0.0005},{"t":1738713604,"p":0.0005},{"t":1738800005,"p":0.0005},{"t":1738886404,"p":0.0005},{"t":1738972804,"p":0.0005},{"t":1739059206,"p":0.0005},{"t":1739145605,"p":0.0005},{"t":1739232004,"p":0.0005},{"t":1739318404,"p":0.0005},{"t":1739404804,"p":0.0005},{"t":1739491205,"p":0.0005},{"t":1739577604,"p":0.0005},{"t":1739664004,"p":0.0005},{"t":1739750404,"p":0.0005},{"t":1739836804,"p":0.0005},{"t":1739923204,"p":0.0005},{"t":1740009604,"p":0.0005},{"t":1740096005,"p":0.0005},{"t":1740182405,"p":0.0005},{"t":1740268804,"p":0.0005},{"t":1740355204,"p":0.0005}]}]}
parse-germany-wiki.mjs ADDED
@@ -0,0 +1,154 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ /**
2
+ * Parser determinístico das pesquisas da Wikipedia "Opinion polling for the 2025 German federal
3
+ * election". Materializa o grid (rowspan/colspan), mapeia colunas->PARTIDOS pelo cabeçalho.
4
+ * Sistema parlamentar: voto por PARTIDO, sem 2º turno. Molde Chile/Peru. Verifica contra o resultado.
5
+ *
6
+ * Entrada: ../../AFOS-Analitica-2026/.cache/germany-wiki.html
7
+ * Saída: polls/germany-polls.csv (long), polls/germany-polls.json
8
+ */
9
+ import { readFileSync, writeFileSync, mkdirSync } from 'fs'
10
+ import { join } from 'path'
11
+
12
+ const HTML = readFileSync(join(process.cwd(), '..', '..', 'AFOS-Analitica-2026', '.cache', 'germany-wiki.html'), 'utf-8')
13
+ const OUT = join(process.cwd(), 'polls'); mkdirSync(OUT, { recursive: true })
14
+ const csv = (rows) => rows.map((r) => r.map((v) => { const s = String(v ?? ''); return /[",\n]/.test(s) ? `"${s.replace(/"/g, '""')}"` : s }).join(',')).join('\n') + '\n'
15
+
16
+ // PARTIDO: token-do-cabeçalho -> {name (canônico p/ join c/ mercado), party}
17
+ const PARTY = {
18
+ 'Grüne': { name: 'Grüne', party: 'Bündnis 90/Die Grünen' },
19
+ 'Linke': { name: 'Die Linke', party: 'Die Linke' },
20
+ 'Union': { name: 'CDU/CSU', party: 'Union (CDU/CSU)' },
21
+ 'AfD': { name: 'AfD', party: 'AfD' },
22
+ 'SPD': { name: 'SPD', party: 'SPD' },
23
+ 'FDP': { name: 'FDP', party: 'FDP' },
24
+ 'BSW': { name: 'BSW', party: 'Bündnis Sahra Wagenknecht' },
25
+ 'FW': { name: 'Freie Wähler', party: 'Freie Wähler' },
26
+ }
27
+ const TOKENS = Object.keys(PARTY)
28
+
29
+ const decode = (s) => s
30
+ .replace(/<sup[^>]*class="[^"]*reference[^"]*"[^>]*>[\s\S]*?<\/sup>/gi, '')
31
+ .replace(/<style[\s\S]*?<\/style>/gi, '')
32
+ .replace(/<[^>]+>/g, '')
33
+ .replace(/&#(\d+);/g, (_, n) => String.fromCharCode(+n))
34
+ .replace(/&nbsp;/g, ' ').replace(/&ndash;/g, '–').replace(/&amp;/g, '&').replace(/&[a-z]+;/gi, ' ')
35
+ .replace(/ /g, ' ').replace(/\s+/g, ' ').trim()
36
+
37
+ function tables(html) { const out = []; const re = /<table[^>]*class="[^"]*wikitable[^"]*"[\s\S]*?<\/table>/gi; let m; while ((m = re.exec(html))) out.push(m[0]); return out }
38
+
39
+ function grid(tableHtml) {
40
+ const trs = tableHtml.split(/<tr[^>]*>/i).slice(1).map((x) => x.split(/<\/tr>/i)[0])
41
+ const g = []; const pending = []
42
+ for (const tr of trs) {
43
+ const cells = []; const cre = /<(t[hd])([^>]*)>([\s\S]*?)<\/\1>/gi; let cm
44
+ while ((cm = cre.exec(tr))) {
45
+ const attrs = cm[2]
46
+ const rs = parseInt((attrs.match(/rowspan="?(\d+)/i) || [])[1] || '1', 10)
47
+ const cs = parseInt((attrs.match(/colspan="?(\d+)/i) || [])[1] || '1', 10)
48
+ cells.push({ text: decode(cm[3]), rs, cs })
49
+ }
50
+ const row = []; let col = 0; let ci = 0
51
+ const place = (text) => { row[col] = text; col++ }
52
+ while (ci < cells.length || pending.some((p) => p.rows > 0)) {
53
+ const p = pending.find((x) => x.col === col && x.rows > 0)
54
+ if (p) { for (let k = 0; k < p.span; k++) place(p.text); p.rows--; continue }
55
+ if (ci >= cells.length) break
56
+ const c = cells[ci++]
57
+ for (let k = 0; k < c.cs; k++) { const cc = col; place(c.text); if (c.rs > 1) pending.push({ col: cc, span: 1, rows: c.rs - 1, text: c.text }) }
58
+ }
59
+ g.push(row)
60
+ }
61
+ return g
62
+ }
63
+
64
+ function labelColumns(g) {
65
+ const headerRows = g.slice(0, 4)
66
+ const ncol = Math.max(...g.map((r) => r.length))
67
+ const labels = []
68
+ for (let c = 0; c < ncol; c++) {
69
+ const texts = headerRows.map((r) => r[c] || '')
70
+ let label = null
71
+ for (const tk of TOKENS) if (texts.some((t) => t === tk || t.split(/[ /]/).includes(tk))) { label = `cand:${tk}`; break }
72
+ if (!label) {
73
+ const joined = texts.join(' ').toLowerCase()
74
+ if (/pollster|firm/.test(joined)) label = 'pollster'
75
+ else if (/sample/.test(joined)) label = 'sample'
76
+ else if (/margin/.test(joined)) label = 'margin'
77
+ else if (/fieldwork|date/.test(joined)) label = 'date'
78
+ else if (/other/.test(joined)) label = 'other'
79
+ else if (/abstention|lead/.test(joined)) label = 'skip'
80
+ }
81
+ labels.push(label)
82
+ }
83
+ return labels
84
+ }
85
+
86
+ const MONTHS = { jan: '01', feb: '02', mar: '03', apr: '04', may: '05', jun: '06', jul: '07', aug: '08', sep: '09', oct: '10', nov: '11', dec: '12' }
87
+ function endDate(s, fy) {
88
+ if (!s) return ''
89
+ const last = s.split(/[–-]/).pop().trim()
90
+ const ym = s.match(/([A-Za-z]{3})[a-z]*\s+(\d{4})/)
91
+ let day, mon, year
92
+ const mm = last.match(/(\d{1,2})\s+([A-Za-z]{3})[a-z]*\s+(\d{4})/)
93
+ if (mm) { day = mm[1]; mon = MONTHS[mm[2].toLowerCase()]; year = mm[3] }
94
+ else { const d = last.match(/(\d{1,2})/); const monM = last.match(/([A-Za-z]{3})/) || s.match(/([A-Za-z]{3})/); day = d ? d[1] : null; mon = monM ? MONTHS[monM[1].toLowerCase()] : null; year = ym ? ym[2] : fy }
95
+ if (!day || !mon || !year) return ''
96
+ return `${year}-${mon}-${String(day).padStart(2, '0')}`
97
+ }
98
+ const num = (s) => { const m = String(s).replace(/,/g, '').match(/-?\d+(?:\.\d+)?/); return m ? parseFloat(m[0]) : null }
99
+ const sampleNum = (s) => { const t = String(s || '').replace(/[.,\s]/g, ''); return /^\d+$/.test(t) ? parseInt(t, 10) : null }
100
+ const isData = (txt) => txt && !/^pollster|^firm|^date|^sample|^margin|^other|^abstention|^lead|results?$/i.test(txt) && txt.length > 1
101
+
102
+ const polls = []
103
+ const allTables = tables(HTML)
104
+ allTables.forEach((t, ti) => {
105
+ const g = grid(t)
106
+ const labels = labelColumns(g)
107
+ const candCols = labels.map((l, i) => ({ l, i })).filter((x) => x.l && x.l.startsWith('cand:'))
108
+ if (candCols.length < 4) return
109
+ const colOf = (name) => labels.indexOf(name)
110
+ const pc = colOf('pollster'), dc = colOf('date'), sc = colOf('sample')
111
+ if (pc < 0 || dc < 0) return
112
+ const yc = {}; for (const row of g) { const m = String(row[dc] || '').match(/\b(20\d\d)\b/); if (m) yc[m[1]] = (yc[m[1]] || 0) + 1 }
113
+ const tableYear = Object.keys(yc).sort((a, b) => yc[b] - yc[a])[0] || '2025'
114
+ let kept = 0
115
+ for (const row of g) {
116
+ const pollster = row[pc]
117
+ if (!isData(pollster)) continue
118
+ const date = row[dc]; const iso = endDate(date, tableYear)
119
+ if (!iso) continue
120
+ if (iso < '2024-01-01' || iso > '2025-02-23') continue
121
+ if (pollster.length > 40) continue
122
+ if (/election|result|\b(19|20)\d\d\b/.test(pollster)) continue
123
+ const sample = sc >= 0 ? sampleNum(row[sc]) : null
124
+ if (sample && sample > 200000) continue
125
+ const results = []
126
+ for (const { l, i } of candCols) { const tk = l.slice(5); const v = num(row[i]); if (v != null && v <= 100) results.push({ token: tk, candidate: PARTY[tk].name, party: PARTY[tk].party, percent: v }) }
127
+ if (results.length < 4) continue
128
+ if (results.every((r) => r.percent === results[0].percent)) continue
129
+ polls.push({ poll_date: iso, fieldwork: date, pollster: pollster.replace(/\s*\(.*/, '').trim(), sample, results })
130
+ kept++
131
+ }
132
+ if (kept > 0) console.error(` tabela #${ti}: ${candCols.length} partidos, ${kept} linhas`)
133
+ })
134
+
135
+ const m = new Map()
136
+ for (const p of polls) { const k = `${p.pollster}|${p.poll_date}`; const prev = m.get(k); if (!prev || p.results.length > prev.results.length) m.set(k, p) }
137
+ const POLLS = [...m.values()].sort((a, b) => a.poll_date.localeCompare(b.poll_date))
138
+
139
+ const rows = [['poll_date', 'fieldwork', 'pollster', 'sample', 'party', 'party_full', 'percent']]
140
+ for (const p of POLLS) for (const r of p.results) rows.push([p.poll_date, p.fieldwork, p.pollster, p.sample ?? '', r.candidate, r.party, r.percent])
141
+ writeFileSync(join(OUT, 'germany-polls.csv'), csv(rows))
142
+ writeFileSync(join(OUT, 'germany-polls.json'), JSON.stringify({
143
+ description: 'National opinion polls for the 2025 German federal election (Bundestag) — party vote share. Parliamentary system: one vote, no runoff. Parsed deterministically from the Wikipedia aggregation (rowspan/colspan-aware).',
144
+ source: 'Wikipedia "Opinion polling for the 2025 German federal election" (rendered table HTML)',
145
+ election: { date: '2025-02-23', type: 'Federal (Bundestag)', note: 'Snap election after the November 2024 coalition collapse.' },
146
+ counts: { polls: POLLS.length, rows: rows.length - 1 },
147
+ polls: POLLS,
148
+ }, null, 2))
149
+
150
+ console.log(`pesquisas: ${POLLS.length} (${rows.length - 1} linhas)`)
151
+ const parties = new Set(); for (const p of POLLS) for (const r of p.results) parties.add(r.candidate)
152
+ console.log(`partidos: ${parties.size} (${[...parties].join(', ')})`)
153
+ const last = POLLS.slice(-1)[0]
154
+ console.log(`CHECK pesquisa mais recente (esperado ~Union 28-29 / AfD 20-21 / SPD 15-16 / Grüne 12 / Linke 8): ${last ? last.poll_date + ' ' + last.pollster + ' ' + JSON.stringify(last.results.map((r) => [r.candidate, r.percent])) : 'n/a'}`)
polls/germany-polls.csv ADDED
The diff for this file is too large to render. See raw diff
 
polls/germany-polls.json ADDED
The diff for this file is too large to render. See raw diff