File size: 4,564 Bytes
cf5bcd6
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
f6a46d1
cf5bcd6
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
84b466e
cf5bcd6
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
eebca6b
cf5bcd6
 
 
eebca6b
cf5bcd6
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
9bfceba
cf5bcd6
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
c2d5224
cf5bcd6
 
 
 
 
 
 
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
---
license: other
pretty_name: CAPT Public-Trace Dataset and Landmark Analysis
language:
- en
tags:
- digital-platforms
- algorithmic-visibility
- amazon-bestsellers
- new-york-times
- longitudinal
- research
configs:
- config_name: amazon_daily_completed
  data_files:
  - split: train
    path: data/amazon_daily_completed.csv
- config_name: nyt_weekly_completed
  data_files:
  - split: train
    path: data/nyt_weekly_completed.csv
---

# CAPT dataset

This repository accompanies the submitted paper *Algorithmic Visibility as a
Platform-Mediated Outcome: Public Signals and Future Product Persistence in
Digital Marketplaces*.

The release contains public Amazon Australia bestseller-surface observations,
public New York Times bestseller-list records, the completed longitudinal
panels used for the paper's sensitivity analysis, reproducible landmark-model
code, and the corresponding derived results.

## Repository contents

| Path | Description |
|---|---|
| `data/amazon_daily_completed.csv` | Amazon daily panel, 14 April–18 May 2026 |
| `data/nyt_weekly_completed.csv` | NYT weekly panel, list dates 19 April–24 May 2026 |
| `analysis/capt_analyze_jmis_landmark.py` | Landmark cohort construction and logistic models |
| `analysis/capt_plot_nyt_amazon_comparison.py` | Title/author normalization and matching functions |
| `analysis/capt_validation_schema.py` | Shared filesystem helper |
| `results/jmis_landmark_book_level.csv` | Derived ASIN-level analytic table |
| `results/jmis_landmark_nested_models.csv` | Nested-model performance |
| `results/jmis_landmark_summary.json` | Model estimates and validation metrics |


## Dataset

Predictors use information dated no later than 30 April 2026. The prediction
landmark is 4 May 2026. Outcomes are product presence on the directly captured
Amazon snapshots of 11 May (7-day retention) and 18 May (14-day retention).
Continuous predictors are standardized within the analysis sample. Model
validation uses an 80/20 stratified holdout and five-fold stratified
cross-validation with seed `20260629`.

## Reproduce the sensitivity analysis

From the repository root:

```bash
python -m venv .venv
source .venv/bin/activate
python -m pip install -r requirements.txt

python analysis/capt_analyze_jmis_landmark.py \
  --amazon data/amazon_daily_completed.csv \
  --nyt data/nyt_weekly_completed.csv \
  --output-dir reproduced_results
```

The command writes the book-level table, nested-model table, and JSON model
summary to `reproduced_results/`.

## Load with `datasets`

```python
from datasets import load_dataset

amazon = load_dataset(
    "bonsai44/CAPT",
    "amazon_daily_completed",
)
nyt = load_dataset(
    "bonsai44/CAPT",
    "nyt_weekly_completed",
)
```

## Fields

The Amazon panel includes snapshot date, category node and label, page and rank,
title, author, ASIN, public product URL, visible rating average and count,
format, price, and provenance fields.

The NYT panel includes scrape date, list slug and title, list page date, rank,
weeks-on-list text, title, author, publisher, description, ISBN-13, public book
URL, and provenance fields.

## Limitations and responsible use

These are bounded public ranking-surface observations, not unit sales,
conversions, advertising exposure, recommendation logs, or a complete sample of
either platform. Amazon ASINs identify product-format records rather than unique
works. Title/author matching may contain false positives or false negatives.
The analysis is observational and does not identify causal effects.

The CSVs include product titles, author names, identifiers, descriptions, and
URLs originating from third-party public pages. Before making the repository
public, the depositor is responsible for confirming that redistribution
complies with the relevant platform terms and publisher or institutional
requirements. The MIT license in `LICENSE` applies to the accompanying software,
not to third-party database rights or third-party content.

## Citation

Replace the placeholders below with the final author and publication details
before publishing the dataset:

```bibtex
@misc{capt_public_trace_2026,
  author       = {Hang Thanh Bui, Priyadharshini Muthukannan},
  title        = {Algorithmic Visibility as a Platform-Mediated Outcome: Public Signals and Future Product Persistence in Digital Marketplaces},
  year         = {2026},
  publisher    = {Hugging Face},
  howpublished = {\url{https://huggingface.co/datasets/bonsai44/CAPT}},
  note         = {Data and code accompanying the submitted manuscript}
}
```