AFOS-Analytics1 commited on
Commit
88986d3
·
verified ·
1 Parent(s): 9d6cd5f

daily mirror — 30/07/2026

Browse files
Files changed (3) hide show
  1. CHANGELOG.md +6 -0
  2. ERRATA.md +79 -0
  3. README.md +2 -1
CHANGELOG.md CHANGED
@@ -2,6 +2,12 @@
2
 
3
  All notable changes to this dataset. The data itself is dated and append-only; this log records **structural** changes (new files, schema, coverage).
4
 
 
 
 
 
 
 
5
  ## 2026-06-30, June poll wave + coverage refresh
6
 
7
  ### Added / Updated
 
2
 
3
  All notable changes to this dataset. The data itself is dated and append-only; this log records **structural** changes (new files, schema, coverage).
4
 
5
+ ## 2026-07-30, errata mechanism
6
+
7
+ ### Added
8
+ - **`ERRATA.md`** (trilingual). Records known defects in already-published dated files. Policy stated explicitly: **files for closed dates are never rewritten**; the correction is published in the errata instead, so the record stays exactly as distributed and the defect stays discoverable. The file for the *current* date may still be regenerated during the day, since the mirror runs more than once daily.
9
+ - **First entry, ERR-2026-001:** `data/divergence-2026-07-29.csv`, row `Renan Santos`, `polymarket_pct` published as `8.6` where the site and the daily synthesis published `8.70%` (`divergence_pp` `0.8` instead of `0.90`). One row of seven on that date; 0.10pp. Cause and prevention documented in `ERRATA.md`.
10
+
11
  ## 2026-06-30, June poll wave + coverage refresh
12
 
13
  ### Added / Updated
ERRATA.md ADDED
@@ -0,0 +1,79 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # Errata
2
+
3
+ **This dataset is dated and append-only. Files for past dates are never rewritten, including when they contain a known error.** Corrections are published here instead, so the record stays exactly as it was distributed and the defect stays discoverable.
4
+
5
+ Scope note on "append-only": the file for the **current** date may be regenerated during the day, because the mirror runs more than once daily. **Files for dates already closed are never modified.**
6
+
7
+ ---
8
+
9
+ ## EN
10
+
11
+ ### ERR-2026-001 · `data/divergence-2026-07-29.csv` · Renan Santos
12
+
13
+ | | Value |
14
+ |---|---|
15
+ | **Affected row** | `2026-07-29,Renan Santos,8.6,7.8,0.8` |
16
+ | **Published** | `polymarket_pct = 8.6` · `divergence_pp = 0.8` |
17
+ | **Correct** | `polymarket_pct = 8.70` · `divergence_pp = 0.90` |
18
+ | **Magnitude** | 0.10pp |
19
+ | **Rows affected** | 1 of 7 that date. All other rows and all other dates are unaffected. |
20
+ | **Detected** | 2026-07-30 |
21
+ | **Status** | **Not corrected in place, by design.** The historical file keeps the value as distributed. |
22
+
23
+ **Cause.** The source file `polls-data.json` stores the same market price in three fields: a display string (`polymarket`), and two numeric fields (`odds`, `value`). A mid-day rebaseline on 2026-07-29 updated the display string to `8,70%` and left the numeric fields at `8.6`. The exporter reads the numeric field first, so the numeric one is what reached this dataset.
24
+
25
+ **What the site and the published daily synthesis said that day:** `8.70%`, with the market-versus-poll distance stated as `0.90pp`. The narrative and the dataset therefore disagree by 0.10pp for this single row.
26
+
27
+ **Prevention.** Since 2026-07-30 a check (`checkPrecoTriplo`) fails the build if the three fields disagree by more than 0.005. It runs in the schema validator and in the pre-commit hook.
28
+
29
+ ---
30
+
31
+ ## PT-BR
32
+
33
+ ### ERR-2026-001 · `data/divergence-2026-07-29.csv` · Renan Santos
34
+
35
+ Este conjunto de dados é **datado e aditivo**. Arquivos de datas já encerradas **nunca são reescritos**, mesmo quando contêm erro conhecido. A correção é publicada aqui, para que o registro permaneça exatamente como foi distribuído e o defeito continue descobrível.
36
+
37
+ | | Valor |
38
+ |---|---|
39
+ | **Linha afetada** | `2026-07-29,Renan Santos,8.6,7.8,0.8` |
40
+ | **Publicado** | `polymarket_pct = 8.6` · `divergence_pp = 0.8` |
41
+ | **Correto** | `polymarket_pct = 8.70` · `divergence_pp = 0.90` |
42
+ | **Magnitude** | 0,10pp |
43
+ | **Alcance** | 1 linha de 7 naquela data. Nenhuma outra linha e nenhuma outra data são afetadas. |
44
+ | **Detectado em** | 30/07/2026 |
45
+ | **Situação** | **Não corrigido no lugar, por decisão.** O arquivo histórico mantém o valor como distribuído. |
46
+
47
+ **Causa.** O arquivo de origem `polls-data.json` guarda o mesmo preço de mercado em três campos: uma string de exibição (`polymarket`) e dois campos numéricos (`odds`, `value`). Um rebaseline no meio do dia 29/07/2026 atualizou a string para `8,70%` e deixou os numéricos em `8.6`. O exportador lê primeiro o campo numérico, e foi ele que chegou a este conjunto de dados.
48
+
49
+ **O que o site e a síntese diária publicaram naquele dia:** `8,70%`, com a distância entre mercado e pesquisa declarada em `0,90pp`. A narrativa e o conjunto de dados divergem, portanto, em 0,10pp nesta única linha.
50
+
51
+ **Prevenção.** Desde 30/07/2026 uma checagem (`checkPrecoTriplo`) reprova a publicação se os três campos divergirem mais de 0,005. Roda no validador de esquema e no gancho de pre-commit.
52
+
53
+ ---
54
+
55
+ ## ES
56
+
57
+ ### ERR-2026-001 · `data/divergence-2026-07-29.csv` · Renan Santos
58
+
59
+ Este conjunto de datos es **fechado y aditivo**. Los archivos de fechas ya cerradas **nunca se reescriben**, ni siquiera cuando contienen un error conocido. La corrección se publica aquí, para que el registro permanezca exactamente como fue distribuido y el defecto siga siendo detectable.
60
+
61
+ | | Valor |
62
+ |---|---|
63
+ | **Fila afectada** | `2026-07-29,Renan Santos,8.6,7.8,0.8` |
64
+ | **Publicado** | `polymarket_pct = 8.6` · `divergence_pp = 0.8` |
65
+ | **Correcto** | `polymarket_pct = 8.70` · `divergence_pp = 0.90` |
66
+ | **Magnitud** | 0,10pp |
67
+ | **Alcance** | 1 fila de 7 en esa fecha. Ninguna otra fila ni ninguna otra fecha están afectadas. |
68
+ | **Detectado** | 30/07/2026 |
69
+ | **Situación** | **No corregido en el lugar, por decisión.** El archivo histórico mantiene el valor tal como fue distribuido. |
70
+
71
+ **Causa.** El archivo de origen `polls-data.json` guarda el mismo precio de mercado en tres campos: una cadena de exhibición (`polymarket`) y dos campos numéricos (`odds`, `value`). Un rebaseline a mitad del día 29/07/2026 actualizó la cadena a `8,70%` y dejó los numéricos en `8.6`. El exportador lee primero el campo numérico, y ese fue el que llegó a este conjunto de datos.
72
+
73
+ **Lo que el sitio y la síntesis diaria publicaron ese día:** `8,70%`, con la distancia entre mercado y encuesta declarada en `0,90pp`. La narrativa y el conjunto de datos divergen, por lo tanto, en 0,10pp en esta única fila.
74
+
75
+ **Prevención.** Desde el 30/07/2026 una verificación (`checkPrecoTriplo`) rechaza la publicación si los tres campos difieren en más de 0,005. Se ejecuta en el validador de esquema y en el gancho de pre-commit.
76
+
77
+ ---
78
+
79
+ *No other errata recorded. · Nenhuma outra errata registrada. · Ninguna otra errata registrada.*
README.md CHANGED
@@ -121,6 +121,7 @@ Full column-level definitions for every file are in **[`DATA_DICTIONARY.md`](DAT
121
  - **Editorial stance:** AFOS reports *divergence* between sources rather than a single blended average — the spread is treated as signal, not noise.
122
  - **Demographics:** *sample-design* demographics — the declared composition/weighting of each poll's sample (layer A) — are included (`polls/sample-demographics.csv`). *Vote-by-demographic crosstabs* (layer B — e.g. vote share by sex/age/income) are **not** part of Brazil's TSE open data; institutes publish those separately, so they are intentionally absent here rather than partially scraped.
123
  - **Scale caveat (market vs poll):** Polymarket prices *probability of winning*; polls report *vote share*. The two divergence files keep both raw values side by side and flag the naive gap accordingly — they are not a like-for-like error metric.
124
- - **Updates:** dated and append-only; each daily commit preserves the full history natively (see `CHANGELOG.md`).
 
125
 
126
  **Sources / Fontes / Fuentes:** Polymarket (live USD markets) · TSE-registered institutes · 400+ press outlets. Method & source code (Apache 2.0): [github.com/AFOS-Analytics](https://github.com/AFOS-Analytics).
 
121
  - **Editorial stance:** AFOS reports *divergence* between sources rather than a single blended average — the spread is treated as signal, not noise.
122
  - **Demographics:** *sample-design* demographics — the declared composition/weighting of each poll's sample (layer A) — are included (`polls/sample-demographics.csv`). *Vote-by-demographic crosstabs* (layer B — e.g. vote share by sex/age/income) are **not** part of Brazil's TSE open data; institutes publish those separately, so they are intentionally absent here rather than partially scraped.
123
  - **Scale caveat (market vs poll):** Polymarket prices *probability of winning*; polls report *vote share*. The two divergence files keep both raw values side by side and flag the naive gap accordingly — they are not a like-for-like error metric.
124
+ - **Updates:** dated and append-only; each daily commit preserves the full history natively (see `CHANGELOG.md`). The file for the *current* date may be regenerated during the day; files for dates already closed are never modified.
125
+ - **Known errors:** see **`ERRATA.md`**. When a defect is found in a past date, the file is **not** rewritten — the correction is published in the errata instead, so the record stays as distributed and the defect stays discoverable. *Erros conhecidos em `ERRATA.md`. · Errores conocidos en `ERRATA.md`.*
126
 
127
  **Sources / Fontes / Fuentes:** Polymarket (live USD markets) · TSE-registered institutes · 400+ press outlets. Method & source code (Apache 2.0): [github.com/AFOS-Analytics](https://github.com/AFOS-Analytics).