Datasets:
Update README.md
Browse files
README.md
CHANGED
@@ -19,11 +19,19 @@ configs:
|
|
19 |
# Student performance
|
20 |
The [Student performance dataset](https://www.kaggle.com/datasets/ulrikthygepedersen/student_performances) is cool.
|
21 |
|
22 |
-
|
23 |
-
|
24 |
-
|
25 |
-
|
26 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
27 |
|
28 |
# Features
|
29 |
|**Feature** |**Type** |
|
|
|
19 |
# Student performance
|
20 |
The [Student performance dataset](https://www.kaggle.com/datasets/ulrikthygepedersen/student_performances) is cool.
|
21 |
|
22 |
+
| **Configuration** | **Task** | **Description** |
|
23 |
+
|-------------------|---------------------------|-----------------------------------------------------------------|
|
24 |
+
| encoding | | Encoding dictionary showing original values of encoded features.|
|
25 |
+
| math | Binary classification | Has the student passed the math exam? |
|
26 |
+
| writing | Binary classification | Has the student passed the writing exam? |
|
27 |
+
| reading | Binary classification | Has the student passed the reading exam? |
|
28 |
+
|
29 |
+
# Usage
|
30 |
+
```python
|
31 |
+
from datasets import load_dataset
|
32 |
+
|
33 |
+
dataset = load_dataset("mstz/student_performance", "math")["train"]
|
34 |
+
```
|
35 |
|
36 |
# Features
|
37 |
|**Feature** |**Type** |
|