Bancie/Reading-Dataset
π 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β¦ See the full description on the dataset page: https://huggingface.co/datasets/Bancie/Reading-Dataset.
π 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:
π― 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
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:
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
@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 }
}