File size: 9,661 Bytes
0293728 18c9ddf 0293728 18c9ddf 0293728 18c9ddf 0293728 | 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 | ---
license: apache-2.0
language:
- en
pretty_name: "StackPulse-778K: Developer Q&A & Code Dataset"
size_categories:
- 100K<n<1M
task_categories:
- text-classification
- question-answering
- text-generation
- feature-extraction
- zero-shot-classification
tags:
- stackoverflow
- code
- nlp
- question-answering
- programming
- python
- javascript
- java
- developer
- community-qa
- html
- tags
configs:
- config_name: full
data_files:
- split: train
path: data/stackoverflow_778k_full.jsonl
- config_name: unanswered
data_files:
- split: train
path: data/stackoverflow_unanswered.jsonl
- config_name: with_code
data_files:
- split: train
path: data/stackoverflow_with_code.jsonl
- config_name: high_quality
data_files:
- split: train
path: data/stackoverflow_high_quality.jsonl
- config_name: python
data_files:
- split: train
path: data/stackoverflow_python.jsonl
- config_name: javascript
data_files:
- split: train
path: data/stackoverflow_javascript.jsonl
- config_name: java
data_files:
- split: train
path: data/stackoverflow_java.jsonl
- config_name: csharp
data_files:
- split: train
path: data/stackoverflow_csharp.jsonl
- config_name: android
data_files:
- split: train
path: data/stackoverflow_android.jsonl
---
# π» StackOverflow-778K: Multi-Year Developer Q&A Dataset
## Dataset Summary
A large-scale Stack Overflow question dataset containing **778,929 unique
questions** sampled across **7 years (2015β2022)**. Each question includes the
raw HTML body, plain-text version, tags, score, view count, answer count, and
a rich set of derived features for immediate ML use.
Collected across **8 sampling runs** on Feb 27 2026, deduplicated to
**778,929 unique questions** with only 2 duplicates removed.
---
## π Files in This Dataset
| File | Format | Rows | Description |
|------|--------|------|-------------|
| stackoverflow_778k_full.csv | CSV | 778,929 | Complete dataset |
| stackoverflow_unanswered.csv | CSV | 224,733 | Questions with 0 answers |
| stackoverflow_with_code.csv | CSV | 595,679 | Questions containing code blocks |
| stackoverflow_high_quality.csv | CSV | 20,205 | Score β₯ 5 and answered |
| stackoverflow_python.csv | CSV | 107,083 | Python-tagged questions |
| stackoverflow_javascript.csv | CSV | 87,367 | JavaScript-tagged questions |
| stackoverflow_java.csv | CSV | 54,077 | Java-tagged questions |
| stackoverflow_csharp.csv | CSV | 40,420 | C#-tagged questions |
| stackoverflow_android.csv | CSV | 42,004 | Android-tagged questions |
| *.jsonl versions | JSONL | same | HuggingFace-native format for all above |
---
## ποΈ Schema Reference
| Column | Type | Description |
|--------|------|-------------|
| id | int64 | Unique Stack Overflow question ID |
| title | string | Question title |
| question_body | string | Raw HTML body (includes `<pre><code>` blocks) |
| body_text | string | Plain text body (HTML stripped, code replaced with [CODE]) |
| tags | string | Pipe-separated tags e.g. `python\|pandas\|dataframe` |
| score | int64 | Net upvotes (can be negative) |
| creation_date | string | ISO 8601 UTC creation timestamp |
| year | int32 | Year extracted from creation_date |
| month | int32 | Month (1β12) |
| hour | int32 | Hour of day (0β23, UTC) |
| dayofweek | int32 | Day of week (0=Monday, 6=Sunday) |
| view_count | int64 | Total question views |
| answer_count | int64 | Number of answers received |
| body_len | int64 | Plain text body character length |
| title_len | int64 | Title character length |
| tag_count | int64 | Number of tags (1β5) |
| code_block_cnt | int64 | Number of `<pre>` code blocks in body |
| has_code | bool | True if question contains at least one code block |
| is_unanswered | bool | True if answer_count == 0 |
| is_popular | bool | True if view_count > 95th percentile (~2,599) |
| is_viral | bool | True if view_count > 99th percentile (~11,513) |
| is_highly_voted | bool | True if score >= 10 |
| is_negative | bool | True if score < 0 |
| score_bucket | string | "negative" / "zero" / "low" / "medium" / "high" |
---
## π Dataset Statistics
### Overview
- **Total questions**: 778,929
- **Date range**: 2015-02-14 β 2022-09-25
- **Missing years**: 2019, 2021 (sampling gaps)
- **Unique tags**: 41,754
- **Zero nulls** in all core columns (2 questions have empty tags)
### Score Distribution
- Mean: 0.69 | Median: 0 | Std: 4.77
- Range: -27 to 1,061
- Negative score: 63,415 (8.14%)
- Zero score: 461,977 (59.31%) β majority never upvoted
- Score β₯ 10: 7,431 (0.95%)
- Score β₯ 100: 246 (0.032%)
### View Count Distribution
- Mean: 794 | Median: 66 | P95: 2,599 | P99: 11,513
- Max: 915,870 views
- Popular (>P95): 38,944 (5.00%)
- Viral (>P99): 7,789 (1.00%)
### Answer Count
- Unanswered: 224,733 (28.85%)
- 1 answer: 387,399 (49.73%)
- 2+ answers: 166,797 (21.42%)
- Max answers on a single question: 36
### Question Body
- Has code block: 595,679 (76.47%)
- Avg code blocks per question: 1.56
- Avg body length: 557 chars | Median: 447 chars
- Avg title length: 59 chars
### Tags
- Avg tags per question: 3.01
- 5 tags (SO max): 117,671 (15.1%)
- 1 tag: 92,409 (11.9%)
### Questions Per Year
- -1: 2,694
- 2015: 99,664
- 2016: 120,887
- 2017: 20,791
- 2018: 20,096
- 2020: 99,676
- 2022: 415,121
*(Note: 2017/2018 low counts reflect sampling focus; 2022 dominates at 53%)*
### Top 10 Tags
- python (98,154)
- javascript (87,156)
- java (53,052)
- c# (40,178)
- android (38,543)
- html (36,572)
- php (34,656)
- reactjs (31,727)
- css (24,770)
- r (21,694)
### Unanswered Rate by Top Tags
- node.js: 36.46% unanswered (hardest to answer)
- reactjs: 35.31%
- flutter: 33.44%
- typescript: 31.19%
- android: 30.49%
- python: 28.69%
- java: 26.88%
- css: 19.59% (easiest to get answered)
- jquery: 18.30%
---
## β οΈ Known Issues & Caveats
1. **YEAR GAPS**: Years 2019 and 2021 are absent β this is a sampling artifact, not
a gap in SO activity. Do not use for temporal trend analysis without noting this.
2. **2022 DOMINANCE**: 415,121 questions (53%) are from 2022. The dataset skews
heavily toward recent questions. Stratify by year if balance matters.
3. **RAW HTML**: `question_body` contains raw HTML including `<`, `>`,
`<pre><code>` blocks. Use `body_text` for NLP tasks. Use `question_body` for
HTML-aware or code-extraction tasks.
4. **SCORE SKEW**: 59.3% of questions have score=0. Mean (0.69) is misleading.
Use `score_bucket` or `is_highly_voted` for classification tasks.
5. **VIEW COUNT SKEW**: Mean (794) is 12Γ the median (66) due to viral questions.
Use log-transformed view_count for regression tasks.
6. **PIPE-SEPARATED TAGS**: The `tags` column uses `|` as delimiter e.g.
`python|pandas|dataframe`. Split with `str.split("|")` before use.
7. **CODE PLACEHOLDER**: In `body_text`, all `<pre>...</pre>` blocks are replaced
with the token `[CODE]`. The original HTML is preserved in `question_body`.
8. **DUPLICATE IDs**: 2 exact duplicates were found and removed during processing.
---
## π Quick Start
### pandas
```python
import pandas as pd
# Full dataset
df = pd.read_csv("data/stackoverflow_778k_full.csv")
# High quality only (score >= 5, answered)
hq = pd.read_csv("data/stackoverflow_high_quality.csv")
# Python questions only
py = pd.read_csv("data/stackoverflow_python.csv")
# Unanswered questions (good for difficulty modeling)
ua = pd.read_csv("data/stackoverflow_unanswered.csv")
# Split tags into list
df["tag_list"] = df["tags"].str.split("|")
# Filter by year
df_2022 = df[df["year"] == 2022]
# Log-transform view count for regression
import numpy as np
df["log_views"] = np.log1p(df["view_count"])
```
### HuggingFace datasets
```python
from datasets import load_dataset
REPO = "Omarrran/StackPulse_778K_QnA_Code_dataset"
# Full 778K
ds = load_dataset(REPO, "full")
# High quality only
hq = load_dataset(REPO, "high_quality")
# Python questions
py = load_dataset(REPO, "python")
# Unanswered questions
ua = load_dataset(REPO, "unanswered")
# Convert to pandas
df = ds["train"].to_pandas()
```
---
## π¬ Suggested Research Tasks
| Task | Config | Key Columns |
|------|--------|-------------|
| Answer prediction (binary) | full | title, body_text, tags β is_unanswered |
| Score regression | full | title, body_text, tags β score |
| View count prediction | full | title, tags, score β log(view_count) |
| Tag recommendation | full | title, body_text β tags |
| Code vs no-code classification | full | body_text β has_code |
| Question quality scoring | full | title, body_text β score_bucket |
| LLM fine-tuning (Q&A) | high_quality | title + body_text as prompt |
| Difficulty estimation | full | tags β unanswered rate per tag |
| Time-of-day analysis | full | hour, dayofweek β view_count / score |
| Language-specific modeling | python/javascript/java | any |
---
## π Citation
```bibtex
@dataset{malik2026stackoverflow,
author = {Malik, Omar Haq Nawaz},
title = {StackOverflow-778K: Multi-Year Developer Q&A Dataset},
year = {2026},
publisher = {HuggingFace},
url = {https://huggingface.co/datasets/Omarrran/StackPulse_778K_QnA_Code_dataset},
questions = {778929},
years = {2015-2022},
license = {Apache-2.0}
}
```
---
## π€ Author
**Omar Haq Nawaz Malik** (HuggingFace: [Omarrran](https://huggingface.co/Omarrran))
AI Engineer & NLP Researcher | BITS Pilani | Srinagar, Kashmir
|