Datasets:
File size: 5,973 Bytes
1d5b2ab 86cf58b 1d5b2ab 86cf58b 1d5b2ab 86cf58b 19cfbb0 86cf58b 19cfbb0 86cf58b 19cfbb0 86cf58b 19cfbb0 86cf58b 68585d1 86cf58b | 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 | ---
license: mit
task_categories:
- text-classification
language:
- en
pretty_name: Reading Performance Dataset
size_categories:
- n<1K
---
## ๐ Reading Performance Dataset
### ๐ Overview
The **Reading Performance Dataset** is a small-scale tabular dataset designed to analyze **reading behavior and performance characteristics across diverse individuals**.
It captures demographic attributes, reading habits, attention levels, and content difficulty to support educational data analysis and machine learning experiments.
This dataset is suitable for **educational analytics**, **behavioral analysis**, and **predictive modeling** related to reading performance.
### ๐ Dataset features
Each row represents a **single reading session**.
The dataset contains the following columns:
| Feature Name | Type | Description |
| ------------------------------- | ----------- | ----------------------------------------------------------------------------------------- |
| `AGE_CATEGORY` | Categorical | Age group of the reader (e.g., `young_adult`). |
| `GENDER` | Categorical | Gender of the participant (`male`, `female`, `other`). |
| `MAJOR` | Categorical | Academic major or role of the reader (e.g., `student`). |
| `MINUTES_READING` | Numeric | Total duration (in minutes) spent actively reading during the session. |
| `MINUTES_BREAK` | Numeric | Total break time (in minutes) taken during reading. |
| `FOCUS_LEVEL` | Ordinal | Level of focus during the reading session. Higher values indicate stronger concentration. |
| `PAGES` | Numeric | Number of pages read during the session. |
| `CONTENT_LEVEL_ENUM` | Ordinal | Difficulty level of the reading material. |
| `READING_GENRE` | Categorical | Genre of the reading material (e.g., academic, language, self-development). |
| `SOUND_VOLUME` | Ordinal | Environmental sound intensity during reading, ranging from silent to extremely loud. |
| `DEVICE` | Categorical | Device or medium used for reading (e.g., laptop, smartphone, book, tablet). |
| `LOCATION` | Categorical | Physical environment where the reading session took place (e.g., home, library, cafรฉ). |
| `WEATHER` | Categorical | Weather condition during the reading session (e.g., sunny, rainy, cloudy). |
| `MOOD` | Ordinal | Emotional state of the reader during the session, from very bad to very good. |
| `HUNGER` | Ordinal | Hunger or satiety level during reading. |
| `AROUSAL` | Ordinal | Cognitive arousal level, from very low to very high. |
| `MENTAL_IN_BREAK` | Ordinal | Mental state during breaks (e.g., chaotic, neutral, calm). |
| `MENTAL_FATIGUE` | Ordinal | Level of mental fatigue experienced during the session. |
| `INTERESTING_LEVEL` | Ordinal | Degree of interest in the reading material. |
| `COMPREHENSION_DEPTH` | Ordinal | Depth of understanding achieved during reading. |
| `LINKING_TO_PREVIOUS_KNOWLEDGE` | Ordinal | Extent to which new content was connected to prior knowledge. |
### ๐ฏ Tasks
This dataset can be used for:
- Text / behavior classification
- Educational performance analysis
- Student reading habit modeling
- Correlation analysis between focus, time, and output
- Regression or classification experiments
Although categorized under **text classification**, the dataset is also applicable to **tabular machine learning tasks**.
### ๐ Data Source & Generation
The dataset was **synthetically curated / collected for educational and analytical purposes**.
No personally identifiable information (PII) is included.
### โ๏ธ License
This dataset is released under the **MIT License**, allowing free use, modification, and distribution with attribution.
### ๐ Usage Example (Python)
#### Basic
```python
from datasets import load_dataset
# Load the dataset
dataset = load_dataset("Bancie/Reading-Dataset")
# View dataset structure
print(dataset)
# Access the default split (usually 'train')
data = dataset['train']
print(f"Number of examples: {len(data)}")
print(f"Features: {data.features}")
# Access a specific example
print(data[0])
# Convert to pandas DataFrame for analysis
df = data.to_pandas()
print(df.head())
```
#### Streaming
For large datasets or when you want to process data without downloading it entirely:
```python
from datasets import load_dataset
# Load dataset in streaming mode
dataset = load_dataset("Bancie/Reading-Dataset", streaming=True)
# Iterate through examples
for example in dataset['train']:
print(example)
# Process your data here
break # Remove break to process all examples
```
### ๐ Citation
```bibtex
@misc{c.b_nguyen_2026,
author = { C.B Nguyen },
title = { Reading-Dataset (Revision 19cfbb0) },
year = 2026,
url = { https://huggingface.co/datasets/Bancie/Reading-Dataset },
doi = { 10.57967/hf/7416 },
publisher = { Hugging Face }
}
```
|