Kossisoroyce commited on
Commit
79e89de
·
verified ·
1 Parent(s): d62254f

Upload class_participation dataset

Browse files
README.md ADDED
@@ -0,0 +1,131 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ license: mit
3
+ task_categories:
4
+ - tabular-regression
5
+ - tabular-classification
6
+ tags:
7
+ - nigeria
8
+ - education
9
+ - africa
10
+ - synthetic-data
11
+ - class-participation
12
+ language:
13
+ - en
14
+ size_categories:
15
+ - 100K<n<1M
16
+ pretty_name: Nigeria Education - Class Participation
17
+ ---
18
+
19
+ # Nigeria - Class Participation
20
+
21
+ ## Dataset Description
22
+
23
+ In-class student participation records with engagement levels and feedback.
24
+
25
+ ## Dataset Information
26
+
27
+ - **Country**: Nigeria
28
+ - **Dataset Name**: class_participation
29
+ - **Total Records**: 100,000
30
+ - **Total Columns**: 10
31
+ - **File Size**: 1.54 MB
32
+ - **Format**: Parquet (full data), CSV (sample)
33
+ - **Generated**: 2025-10-21T23:15:59.001877
34
+
35
+ ## Schema
36
+
37
+ | Column | Data Type | Description |
38
+ |--------|-----------|-------------|
39
+ | `participation_id` | object | Participation Id |
40
+ | `student_id` | object | Student Id |
41
+ | `participation_date` | datetime64[ns] | Participation Date |
42
+ | `subject` | object | Subject |
43
+ | `participation_type` | object | Participation Type |
44
+ | `participation_score` | float64 | Participation Score |
45
+ | `engagement_level` | object | Engagement Level |
46
+ | `class_session` | float64 | Class Session |
47
+ | `teacher_feedback` | object | Teacher Feedback |
48
+ | `country` | object | Country |
49
+
50
+ ## Sample Data
51
+
52
+ The dataset includes a 10,000-row sample in CSV format for quick exploration.
53
+
54
+ ## Data Quality
55
+
56
+ - **Validation Status**: ✅ Passed
57
+ - **Missing Data**: ~2-5% (realistic pattern)
58
+ - **Data Type Enforcement**: Strict
59
+ - **Cross-Dataset Consistency**: Maintained
60
+
61
+ ## Dependencies
62
+
63
+ - `student_profiles`
64
+ - `enrollment_registration`
65
+
66
+ ## Usage Example
67
+
68
+ ### Python (Pandas)
69
+ ```python
70
+ import pandas as pd
71
+
72
+ # Load full dataset
73
+ df = pd.read_parquet('class_participation_full.parquet')
74
+ print(f"Loaded {len(df):,} records")
75
+ print(df.head())
76
+
77
+ # Load sample
78
+ df_sample = pd.read_csv('class_participation_sample.csv')
79
+ print(df_sample.describe())
80
+ ```
81
+
82
+ ### Python (Hugging Face Datasets)
83
+ ```python
84
+ from datasets import load_dataset
85
+
86
+ # Load from Hugging Face
87
+ dataset = load_dataset('nigeria-education-class_participation')
88
+ df = dataset['train'].to_pandas()
89
+ ```
90
+
91
+ ## Data Generation
92
+
93
+ This dataset was generated using statistical distributions based on:
94
+ - UNICEF education statistics for Nigeria
95
+ - World Bank development indicators
96
+ - Nigerian Ministry of Education data
97
+ - Realistic probability distributions
98
+
99
+ **Note**: This is synthetic data generated for research and testing purposes.
100
+
101
+ ## Related Datasets
102
+
103
+ This dataset is part of the **Nigeria Education Datasets Collection** (45 datasets total).
104
+
105
+ Browse the full collection: [Nigeria Education Datasets](https://huggingface.co/collections/nigeria-education)
106
+
107
+ ## Citation
108
+
109
+ ```bibtex
110
+ @dataset{nigeria_class_participation_2025,
111
+ title={Nigeria Education Dataset: Class Participation},
112
+ author={[Your Name/Organization]},
113
+ year={2025},
114
+ publisher={Hugging Face},
115
+ url={https://huggingface.co/datasets/nigeria-education-class_participation}
116
+ }
117
+ ```
118
+
119
+ ## License
120
+
121
+ [Specify your license]
122
+
123
+ ## Contact
124
+
125
+ [Your contact information]
126
+
127
+ ---
128
+
129
+ **Part of**: Nigeria Education Datasets Collection
130
+ **Total Datasets**: 45
131
+ **Country**: Nigeria 🇳🇬
class_participation_full.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:f75b7afc2161bf594210dfb59fad3198464fa1d32596359881b835db400b61cc
3
+ size 1619825
class_participation_sample.csv ADDED
The diff for this file is too large to render. See raw diff
 
metadata.yaml ADDED
@@ -0,0 +1,36 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ columns:
2
+ - participation_id
3
+ - student_id
4
+ - participation_date
5
+ - subject
6
+ - participation_type
7
+ - participation_score
8
+ - engagement_level
9
+ - class_session
10
+ - teacher_feedback
11
+ - country
12
+ country: Nigeria
13
+ country_code: NGA
14
+ dataset_name: class_participation
15
+ dependencies:
16
+ - student_profiles
17
+ - enrollment_registration
18
+ dtypes:
19
+ class_session: float64
20
+ country: object
21
+ engagement_level: object
22
+ participation_date: datetime64[ns]
23
+ participation_id: object
24
+ participation_score: float64
25
+ participation_type: object
26
+ student_id: object
27
+ subject: object
28
+ teacher_feedback: object
29
+ file_size_mb: 1.544785499572754
30
+ generated_at: '2025-10-21T23:15:59.001877'
31
+ num_columns: 10
32
+ num_rows: 100000
33
+ validation:
34
+ checks: {}
35
+ passed: true
36
+ version: 1.0.0