Update dataset card
Browse files
README.md
CHANGED
|
@@ -37,6 +37,7 @@ A curated dataset of visualization research publications from IEEE VIS, EuroVis,
|
|
| 37 |
| Accessible | bool | Tagged for screen-reader accessibility |
|
| 38 |
| Early | bool | Early access publication |
|
| 39 |
| Resources | list[string] | Available resource types (P, V, C, PW, D, O) |
|
|
|
|
| 40 |
|
| 41 |
## Award Codes
|
| 42 |
|
|
@@ -55,6 +56,28 @@ A curated dataset of visualization research publications from IEEE VIS, EuroVis,
|
|
| 55 |
- **D** — Data
|
| 56 |
- **O** — Other
|
| 57 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 58 |
## Versioning
|
| 59 |
|
| 60 |
Versions follow `v{year}.{minor}` with optional prerelease suffixes:
|
|
|
|
| 37 |
| Accessible | bool | Tagged for screen-reader accessibility |
|
| 38 |
| Early | bool | Early access publication |
|
| 39 |
| Resources | list[string] | Available resource types (P, V, C, PW, D, O) |
|
| 40 |
+
| ResourceLinks | list[struct] | Links for each resource: {name, url, icon} |
|
| 41 |
|
| 42 |
## Award Codes
|
| 43 |
|
|
|
|
| 56 |
- **D** — Data
|
| 57 |
- **O** — Other
|
| 58 |
|
| 59 |
+
## Usage
|
| 60 |
+
|
| 61 |
+
```bash
|
| 62 |
+
pip install datasets
|
| 63 |
+
```
|
| 64 |
+
|
| 65 |
+
Load the most recent version:
|
| 66 |
+
|
| 67 |
+
```python
|
| 68 |
+
from datasets import load_dataset
|
| 69 |
+
ds = load_dataset("DevLan/vispubs")
|
| 70 |
+
print(ds["train"].to_pandas().head())
|
| 71 |
+
```
|
| 72 |
+
|
| 73 |
+
Load a specific tagged version:
|
| 74 |
+
|
| 75 |
+
```python
|
| 76 |
+
from datasets import load_dataset
|
| 77 |
+
ds = load_dataset("DevLan/vispubs", revision="v2026.0-alpha")
|
| 78 |
+
print(ds["train"].to_pandas().head())
|
| 79 |
+
```
|
| 80 |
+
|
| 81 |
## Versioning
|
| 82 |
|
| 83 |
Versions follow `v{year}.{minor}` with optional prerelease suffixes:
|