File size: 7,259 Bytes
5a3472e 254fb7e 5a3472e e757781 5a3472e ea07a43 5a3472e | 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 | ---
license: mit
task_categories:
- other
language:
- en
tags:
- browser-extension
- user-study
- human-computer-interaction
- web-agents
- within-subjects
pretty_name: PageGuide User Study
size_categories:
- n<1K
---
# PageGuide User Study Dataset
Link to the project: https://pageguide.github.io/
Link to the paper: https://huggingface.co/papers/2604.23772
Link to the code: https://github.com/tin-xai/pageguide
This dataset contains raw interaction data from a controlled within-subjects user study evaluating **PageGuide: Browser extension to assist users in navigating a webpage and locating information**, an AI-powered browser extension that helps users complete web tasks via natural language.
Participants performed tasks in two conditions — **with** and **without** the extension — across three task types: `find`, `guide`, and `hide`. Collected metrics include task-completion times, accuracy scores, and post-study survey responses.
---
## Study Design
| Property | Value |
|---|---|
| Design | Counterbalanced within-subjects |
| Conditions | `extension` (PageGuide active) vs. `control` (no extension) |
| Task types | `find` · `guide` · `hide` |
| Primary metrics | Completion time, accuracy, survey ratings |
**Task types**
- **find** — locate or highlight specific information on a webpage
- **guide** — follow step-by-step instructions to complete a multi-step web action
- **hide** — filter or conceal unwanted content on a webpage
Participants were randomly assigned a counterbalanced order so that each person experienced both conditions. Task questions are labelled `q0`, `q1`, `q2`, etc.
---
## Files
### `tasks.csv` (2.29 MB)
Raw per-interaction log — the main data file. Each row is one task attempt.
| Column | Description |
|---|---|
| `session_id` | Unique participant session identifier |
| `condition` | `extension` or `control` |
| `task_type` | `find`, `guide`, or `hide` |
| `question_id` | Task question index within its type (`q0`, `q1`, …) |
| `start_time` | Unix timestamp (ms) when the task started |
| `end_time` | Unix timestamp (ms) when the task ended |
| `duration_s` | Elapsed time in seconds |
| `completed` | Boolean — whether the participant marked the task complete |
| `accuracy` | Graded accuracy score (0–1 or 0–100) for find/hide tasks |
| `query` | The natural-language query the participant typed (extension condition only) |
| `chat_turns` | Number of chat interactions in the extension condition |
### `sessions.csv` (8.28 kB)
One row per participant session — demographic and counterbalancing metadata.
| Column | Description |
|---|---|
| `session_id` | Matches `tasks.csv` |
| `participant_id` | Anonymised participant label |
| `order` | Condition order assigned (`extension_first` or `control_first`) |
| `started_at` | Session start timestamp |
| `web_experience` | Self-reported web experience level |
### `paired_times.csv` (10.8 kB)
Pre-processed paired completion times — one row per participant × task, ready for paired statistical tests.
| Column | Description |
|---|---|
| `participant_id` | Anonymised participant label |
| `task_type` | `find`, `guide`, or `hide` |
| `question_id` | Task question index |
| `time_extension` | Completion time (s) in the extension condition |
| `time_control` | Completion time (s) in the control condition |
| `time_diff` | `time_control − time_extension` (positive = extension faster) |
### `summary.csv` (85.2 kB)
Aggregated per-participant × per-task-type summary statistics (mean time, accuracy, completion rate) for both conditions. Useful for quick group-level analysis.
### `stats_results.csv` (227 bytes)
Results of the paired statistical tests (Wilcoxon signed-rank / paired t-test) run on completion times and accuracy. One row per metric × task-type comparison.
| Column | Description |
|---|---|
| `metric` | e.g., `duration_s`, `accuracy` |
| `task_type` | `find`, `guide`, `hide`, or `all` |
| `test` | Statistical test used |
| `statistic` | Test statistic |
| `p_value` | p-value |
| `significant` | Boolean (α = 0.05) |
### `survey_summary.csv` (415 bytes)
Aggregated post-study questionnaire scores per condition. Covers perceived usability (SUS-style) and cognitive load (NASA-TLX-style) dimensions.
| Column | Description |
|---|---|
| `condition` | `extension` or `control` |
| `dimension` | Survey dimension name |
| `mean` | Mean rating |
| `std` | Standard deviation |
| `n` | Number of responses |
---
## Quick Start
### Load with the 🤗 `datasets` library (recommended)
```python
from datasets import load_dataset
# Load individual files as named splits
tasks = load_dataset("ttn0011/pageguide_userstudy", data_files="tasks.csv", split="train").to_pandas()
paired = load_dataset("ttn0011/pageguide_userstudy", data_files="paired_times.csv", split="train").to_pandas()
sessions = load_dataset("ttn0011/pageguide_userstudy", data_files="sessions.csv", split="train").to_pandas()
survey = load_dataset("ttn0011/pageguide_userstudy", data_files="survey_summary.csv", split="train").to_pandas()
stats = load_dataset("ttn0011/pageguide_userstudy", data_files="stats_results.csv", split="train").to_pandas()
# Mean completion time by condition and task type
tasks.groupby(["condition", "task_type"])["duration_s"].mean()
# Paired time difference (positive = extension faster)
paired.groupby("task_type")["time_diff"].mean()
# Survey ratings side by side
survey.pivot(index="dimension", columns="condition", values="mean")
```
### Or load directly with pandas
```python
import pandas as pd
BASE = "https://huggingface.co/datasets/ttn0011/pageguide_userstudy/resolve/main/"
tasks = pd.read_csv(BASE + "tasks.csv")
paired = pd.read_csv(BASE + "paired_times.csv")
sessions = pd.read_csv(BASE + "sessions.csv")
survey = pd.read_csv(BASE + "survey_summary.csv")
stats = pd.read_csv(BASE + "stats_results.csv")
```
### Reproduce the paired-time plot
```python
import matplotlib.pyplot as plt
from datasets import load_dataset
paired = load_dataset("ttn0011/pageguide_userstudy", data_files="paired_times.csv", split="train").to_pandas()
fig, axes = plt.subplots(1, 3, figsize=(12, 4), sharey=False)
for ax, task in zip(axes, ["find", "guide", "hide"]):
subset = paired[paired["task_type"] == task]
for _, row in subset.iterrows():
ax.plot([0, 1], [row["time_control"], row["time_extension"]],
color="steelblue", alpha=0.4, linewidth=1)
ax.set_xticks([0, 1])
ax.set_xticklabels(["Control", "Extension"])
ax.set_title(task.capitalize())
ax.set_ylabel("Completion time (s)")
plt.tight_layout()
plt.savefig("paired_times.png", dpi=150)
```
---
## Citation
If you use this dataset, please cite the associated paper:
```bibtex
@misc{pageguide2025,
title = {PageGuide: Browser Extension to Assist Users in Navigating a Webpage and Locating Information},
author = {Tin Nguyen and others},
year = {2025},
note = {User study data: \url{https://huggingface.co/datasets/ttn0011/pageguide_userstudy}}
}
```
---
## License
MIT — see [LICENSE](LICENSE) for details.
All participant data is anonymised. No personally identifiable information is included.
|