File size: 2,419 Bytes
79a3b1e 91a8ce3 79a3b1e 91a8ce3 79a3b1e b70af9e 3606078 fd2a057 79a3b1e 9c8fc97 79a3b1e | 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 | ---
license: cc-by-4.0
task_categories:
- text-classification
- feature-extraction
language:
- en
tags:
- visualization
- academic-papers
- IEEE-VIS
- EuroVis
- CHI
pretty_name: VisPubs
size_categories:
- 1K<n<10K
---
# VisPubs Dataset
A curated dataset of visualization research publications from IEEE VIS, EuroVis, and CHI conferences.
**Website:** [vispubs.com](https://vispubs.com)
**Source:** [github.com/Dev-Lan/vispubs](https://github.com/Dev-Lan/vispubs)
## Schema
| Column | Type | Description |
|--------|------|-------------|
| Conference | categorical | Conference venue (Vis, EuroVis, CHI) |
| Year | int | Publication year |
| Title | string | Paper title |
| DOI | string | Digital Object Identifier |
| Abstract | string | Paper abstract |
| AuthorNames-Deduped | list[string] | Author names (deduplicated) |
| Award | list[string] | Awards received (BP, HM, BCS, BA, TT) |
| Accessible | bool | Tagged for screen-reader accessibility |
| Early | bool | Early access publication |
| Resources | list[string] | Available resource types (P, V, C, PW, D, O) |
| ResourceLinks | list[struct] | Links for each resource: {name, url, icon} |
## Award Codes
- **BP** — Best Paper
- **HM** — Honorable Mention
- **BCS** — Best Case Study
- **BA** — Best Application
- **TT** — Test of Time
## Resource Codes
- **P** — Paper (preprint)
- **V** — Video
- **C** — Code
- **PW** — Project Website
- **D** — Data
- **O** — Other
## Usage
```bash
pip install datasets
```
Load the most recent version:
```python
from datasets import load_dataset
ds = load_dataset("DevLan/vispubs")
print(ds["train"].to_pandas().head())
```
Load a specific tagged version:
```python
from datasets import load_dataset
ds = load_dataset("DevLan/vispubs", revision="v2026.0-alpha")
print(ds["train"].to_pandas().head())
```
## Versioning
Versions follow `v{year}.{minor}` with optional prerelease suffixes:
- `alpha` — Early testing, schema may change
- `beta` — Near-stable, minor adjustments possible
- No suffix — Stable release
## Changelog
### v2026.3-alpha (2026-02-25)
- update readme, no change in data
### v2026.2-alpha (2026-02-25)
- update readme, no change in data
### v2026.1-alpha (2026-02-25)
- update readme, no change in data
### v2026.0-alpha (2026-02-25)
- update readme, no change in data
### v2026.0-alpha (2026-02-25)
- initial alpha upload
|