File size: 1,734 Bytes
803974e
 
 
 
 
 
 
 
 
a25a719
 
803974e
 
 
 
 
 
a25a719
803974e
 
a515950
56f86c7
da7df0c
 
 
 
 
 
 
 
 
 
 
 
 
56f86c7
 
 
 
bda19ef
56f86c7
 
bda19ef
 
56f86c7
 
a25a719
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
---
language:
- en
tags:
- student performance
- tabular_classification
- binary_classification
pretty_name: Student Performance
size_categories:
- n<1K
task_categories:
- tabular-classification
configs:
- encoding
- math
- writing
- reading
license: cc
---
# Student performance
The [Student performance dataset](https://www.kaggle.com/datasets/ulrikthygepedersen/student_performances) from Kaggle.

| **Configuration** | **Task**                  | **Description**                                                 |
|-------------------|---------------------------|-----------------------------------------------------------------|
| encoding          |                           | Encoding dictionary showing original values of encoded features.|
| math              | Binary classification     | Has the student passed the math exam?                           |
| writing           | Binary classification     | Has the student passed the writing exam?                        |
| reading           | Binary classification     | Has the student passed the reading exam?                        |

# Usage
```python
from datasets import load_dataset

dataset = load_dataset("mstz/student_performance", "math")["train"]
```

# Features
|**Feature**                        |**Type**   |
|-----------------------------------|-----------|
|`is_male`                          |`bool`     |
|`ethnicity`                        |`string`   |
|`parental_level_of_education`      |`int8`     |
|`has_standard_lunch`               |`bool`     |
|`has_completed_preparation_test`   |`bool`     |
|`reading_score`                    |`int64`    |
|`writing_score`                    |`int64`    |
|`math_score`                       |`int64`    |