File size: 13,147 Bytes
75ea9e7 52ab9a7 75ea9e7 52ab9a7 75ea9e7 52ab9a7 75ea9e7 52ab9a7 75ea9e7 52ab9a7 75ea9e7 f6dad93 75ea9e7 f6dad93 75ea9e7 52ab9a7 75ea9e7 52ab9a7 75ea9e7 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 | ---
language:
- en
size_categories:
- 1K<n<10K
viewer: false
license: cc-by-nc-sa-4.0
paper: https://arxiv.org/abs/2603.22368
repository: https://github.com/Harsh-Lalai/Evaluating-Vision-Language-Models-on-Misleading-Data-Visualizations
point_of_contact: lalaiharsh26@gmail.com
---
## Dataset Description
- **Repository:** https://github.com/Harsh-Lalai/Evaluating-Vision-Language-Models-on-Misleading-Data-Visualizations
- **Paper:** https://arxiv.org/abs/2603.22368
- **Point of Contact:** lalaiharsh26@gmail.com
# Evaluating Vision-Language Models on Misleading Data Visualizations (Dataset)
## Overview
This dataset accompanies the paper:
“[When Visuals Aren’t the Problem: Evaluating Vision-Language Models on Misleading Data Visualizations.](https://arxiv.org/abs/2603.22368)”
MisVisBench is designed to evaluate whether Vision-Language Models (VLMs) can detect misleading information in **data visualization-caption pairs**, and whether they can correctly attribute the source of misleadingness to appropriate error types: Caption-level reasoning errors and Visualization design errors.
Unlike prior benchmarks that primarily focus on chart understanding or visual distortions, MisVisBench enables **fine-grained analysis of misleadingness arising from both textual reasoning and visualization design choices**.
---
# Dataset Structure

The dataset follows the **2 × 2 misleadingness decomposition** shown above.
2 × 2 mapping:
- **△** → caption-level reasoning errors, visualization is not misleading
- **○** → visualization design errors, caption is not misleading
- **■** → both caption and visualization are misleading
- **∅** → neither caption nor visualization is misleading (control)
The exact top-level keys in `data.json` are:
- `Misleading_Caption_Non_Misleading_Vis`
- `Non_Misleading_Caption_Misleading_Vis`
- `Misleading_Caption_Misleading_Vis`
- `Non_Misleading_Caption_Non_Misleading_Vis`
---
# Dataset Statistics
| Subset | Count |
|---|---:|
| **△** | 793 |
| **○** | 1110 |
| **■** | 501 |
| **∅** | 611 |
| **Total** | 3015 |
---
# Data Sources
| Subset | Source |
|---|---|
| **△** | X/Twitter |
| **○** | X/Twitter and subreddit DataIsUgly |
| **■** | X |
| **∅** | subreddit DataIsBeautiful |
Notes:
- For all samples sourced from **X**, we use the sample IDs from Lisnic et al. [1].
- In **○**, the first **601** samples are from **X** and the remaining samples are from **Reddit**.
---
# Dataset File
The dataset is provided as a **single JSON file**:
```
data.json
```
Structure:
```json
{
"data_type_name": {
"sample_id": {
"reasoning_error_names": [...],
"visualization_error_names": [...],
"text": "... (only present for Misleading_Caption_Misleading_Vis samples)"
}
}
}
```
Example:
```json
{
"Misleading_Caption_Non_Misleading_Vis": {
"example_id1": {
"reasoning_error_names": ["Cherry-picking", "Causal inference"],
"visualization_error_names": null
}
},
"Misleading_Caption_Misleading_Vis": {
"example_id2": {
"reasoning_error_names": ["Cherry-picking"],
"visualization_error_names": ["Dual axis"],
"text": "Example caption written by the authors that introduces reasoning errors."
}
}
}
```
---
# Dataset Fields
| Field | Description |
|---|---|
| **sample_id** | Identifier corresponding to the original post (tweet or Reddit post) |
| **reasoning_error_names** | List of caption-level reasoning errors present in the example |
| **visualization_error_names** | List of visualization design errors present in the chart |
| **text** | Caption text (**only provided for ■ samples**) |
### Important Note on the `text` Field
The **`text` field is only provided for ■ samples**.
For these samples:
- The captions were **written by the authors**
- The goal is to introduce specific **reasoning errors**
- The visualization is reused while the caption introduces the misleading reasoning
For the other three subsets (**△**, **○**, and **∅**), the dataset **does not include the caption text**, and therefore the `text` field is **not present** in those entries.
---
# Usage
The dataset can be loaded using the Hugging Face `datasets` library.
```python
from huggingface_hub import hf_hub_download
import json
# Replace with your Hugging Face token
HF_TOKEN = "hf_xxxxxxxxxxxxxxxxx"
# Download the raw JSON file from the dataset repo
json_path = hf_hub_download(
repo_id = "MaybeMessi/MisVisBench",
repo_type = "dataset",
filename = "data.json",
token = HF_TOKEN
)
# Load the JSON
with open(json_path, "r", encoding="utf-8") as f:
data = json.load(f)
# Iterate through the dataset
for category_name, samples in data.items():
for sample_id, sample in samples.items():
reasoning_errors = sample["reasoning_error_names"]
visualization_errors = sample["visualization_error_names"]
print("Category:", category_name)
print("Sample ID:", sample_id)
print("Reasoning Errors:", reasoning_errors)
print("Visualization Errors:", visualization_errors)
print()
```
# Error Taxonomy
## Caption-Level Reasoning Errors
- Cherry-picking
- Causal inference
- Setting an arbitrary threshold
- Failure to account for statistical nuance
- Incorrect reading of chart
- Issues with data validity
- Misrepresentation of scientific studies
## Visualization Design Errors
- Truncated axis
- Dual axis
- Value encoded as area or volume
- Inverted axis
- Uneven binning
- Unclear encoding
- Inappropriate encoding
## Examples: Caption-Level Reasoning Errors
<table style="width: 100%; table-layout: fixed; border-collapse: collapse;">
<colgroup>
<col style="width: 60%;" />
<col style="width: 25%;" />
<col style="width: 15%;" />
</colgroup>
<thead>
<tr>
<th width="60%" style="text-align: center;">Visualization</th>
<th width="25%" style="text-align: left;">Caption</th>
<th width="15%" style="text-align: center;">Reasoning Error</th>
</tr>
</thead>
<tbody>
<tr>
<td style="text-align: center;"><img src="Examples/Cherry-picking.jpg" style="width: 360px; height: auto;"/></td>
<td style="overflow-wrap: anywhere; text-align: left;">Reminder: Just because we've hit a peak does not mean we've hit THE peak.</td>
<td style="overflow-wrap: anywhere; text-align: center;"><strong>Cherry-picking</strong></td>
</tr>
<tr>
<td style="text-align: center;"><img src="Examples/Causal Inference.jpg" style="width: 360px; height: auto;"/></td>
<td style="overflow-wrap: anywhere; text-align: left;">The positive impact of the UK's vaccination efforts in one graph</td>
<td style="overflow-wrap: anywhere; text-align: center;"><strong>Causal inference</strong></td>
</tr>
<tr>
<td style="text-align: center;"><img src="Examples/Setting Arb Threshold.jpg" style="width: 360px; height: auto;"/></td>
<td style="overflow-wrap: anywhere; text-align: left;">This in a country of 56 million. Lift lockdown now, the virus is just gone.</td>
<td style="overflow-wrap: anywhere; text-align: center;"><strong>Setting an arbitrary threshold</strong></td>
</tr>
<tr>
<td style="text-align: center;"><img src="Examples/Stat Nuance.jpg" style="width: 360px; height: auto;"/></td>
<td style="overflow-wrap: anywhere; text-align: left;">The numbers absolutely speak for themselves. Get vaccinated!</td>
<td style="overflow-wrap: anywhere; text-align: center;"><strong>Failure to account for statistical nuance</strong></td>
</tr>
<tr>
<td style="text-align: center;"><img src="Examples/Incorr Chart Reading.jpg" style="width: 360px; height: auto;"/></td>
<td style="overflow-wrap: anywhere; text-align: left;">The flu is 10 times less deadly - particularly for elderly - than Covid!</td>
<td style="overflow-wrap: anywhere; text-align: center;"><strong>Incorrect reading of chart</strong></td>
</tr>
<tr>
<td style="text-align: center;"><img src="Examples/Data Val.jpg" style="width: 360px; height: auto;"/></td>
<td style="overflow-wrap: anywhere; text-align: left;">This is a test of our humanity</td>
<td style="overflow-wrap: anywhere; text-align: center;"><strong>Issues with data validity</strong></td>
</tr>
<tr>
<td style="text-align: center;"><img src="Examples/Misrep Scientific Studies.jpg" style="width: 360px; height: auto;"/></td>
<td style="overflow-wrap: anywhere; text-align: left;">SARS-Co∅2 positivity rates associated with circulating 25-hydroxyvitamin D levels (https://tinyurl.com/5n9xm536)</td>
<td style="overflow-wrap: anywhere; text-align: center;"><strong>Misrepresentation of scientific studies</strong></td>
</tr>
</tbody>
</table>
## Examples: Visualization Design Errors
<table style="width: 100%; table-layout: fixed; border-collapse: collapse;">
<colgroup>
<col style="width: 60%;" />
<col style="width: 25%;" />
<col style="width: 15%;" />
</colgroup>
<thead>
<tr>
<th width="60%" style="text-align: center;">Visualization</th>
<th width="25%" style="text-align: left;">Caption</th>
<th width="15%" style="text-align: center;">Visualization Error</th>
</tr>
</thead>
<tbody>
<tr>
<td style="text-align: center;"><img src="Examples/Truncated Axis.png" style="width: 360px; height: auto;"/></td>
<td style="overflow-wrap: anywhere; text-align: left;">Respiratory deaths at 10 year low!</td>
<td style="overflow-wrap: anywhere; text-align: center;"><strong>Truncated axis</strong></td>
</tr>
<tr>
<td style="text-align: center;"><img src="Examples/Dual Axis.jpg" style="width: 360px; height: auto;"/></td>
<td style="overflow-wrap: anywhere; text-align: left;">May 17 Update: US COVID-19 Test Results: Test-and-Trace Success for Smallpox</td>
<td style="overflow-wrap: anywhere; text-align: center;"><strong>Dual axis</strong></td>
</tr>
<tr>
<td style="text-align: center;"><img src="Examples/Area Volume.jpg" style="width: 360px; height: auto;"/></td>
<td style="overflow-wrap: anywhere; text-align: left;">Corona Virus Interactive Map.</td>
<td style="overflow-wrap: anywhere; text-align: center;"><strong>Value encoded as area or volume</strong></td>
</tr>
<tr>
<td style="text-align: center;"><img src="Examples/Inv Axis.jpg" style="width: 360px; height: auto;"/></td>
<td style="overflow-wrap: anywhere; text-align: left;">Propaganda: RECORD NUMBER OF COVID POSITIVE CASES. Reality:</td>
<td style="overflow-wrap: anywhere; text-align: center;"><strong>Inverted axis</strong></td>
</tr>
<tr>
<td style="text-align: center;"><img src="Examples/Uneven Binning.jpeg" style="width: 360px; height: auto;"/></td>
<td style="overflow-wrap: anywhere; text-align: left;">Interesting colour coding from the BBC</td>
<td style="overflow-wrap: anywhere; text-align: center;"><strong>Uneven binning</strong></td>
</tr>
<tr>
<td style="text-align: center;"><img src="Examples/Unclear Encoding.jpg" style="width: 360px; height: auto;"/></td>
<td style="overflow-wrap: anywhere; text-align: left;">The Navajo Nation crushed the Covid curve. Success is possible.</td>
<td style="overflow-wrap: anywhere; text-align: center;"><strong>Unclear encoding</strong></td>
</tr>
<tr>
<td style="text-align: center;"><img src="Examples/Inappropriate Encoding.jpg" style="width: 360px; height: auto;"/></td>
<td style="overflow-wrap: anywhere; text-align: left;">The worst pandemic of the most contagious disease we have seen for 100 years.</td>
<td style="overflow-wrap: anywhere; text-align: center;"><strong>Inappropriate encoding</strong></td>
</tr>
</tbody>
</table>
---
# Dataset Purpose
This dataset enables evaluation of whether models can:
1. Detect misleading chart-caption pairs
2. Determine whether misleadingness arises from the **caption, visualization, or both**
3. Attribute misleadingness to **specific error categories**
This allows researchers to analyze how well VLMs handle **reasoning-based misinformation versus visualization design distortions**.
---
# References
[1] Lisnic, Maxim, Cole Polychronis, Alexander Lex, and Marina Kogan. "Misleading beyond visual tricks: How people actually lie with charts." In *Proceedings of the 2023 CHI Conference on Human Factors in Computing Systems*, pp. 1-21. 2023.
---
# License
The dataset is released under the **CC-BY-NC-SA 4.0**.
---
# Contact
For any issues related to the dataset, feel free to reach out to lalaiharsh26@gmail.com
---
# Citation
```
@article{lalai2026visuals,
title={When Visuals Aren't the Problem: Evaluating Vision-Language Models on Misleading Data Visualizations},
author={Lalai, Harsh Nishant and Shah, Raj Sanjay and Pfister, Hanspeter and Varma, Sashank and Guo, Grace},
journal={arXiv preprint arXiv:2603.22368},
year={2026}
}
``` |