Datasets:
File size: 2,166 Bytes
a09b493 122baf7 a09b493 122baf7 a09b493 9980f1b a09b493 9980f1b a09b493 9980f1b a09b493 7304c86 a09b493 67a4f54 114ca46 122baf7 |
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 |
---
language:
- en
tags:
- breast
- tabular_classification
- binary_classification
pretty_name: German
size_categories:
- n<1K
task_categories:
- tabular-classification
configs:
- encoding
- loan
license: cc
---
# German
The [German dataset](https://archive.ics.uci.edu/ml/datasets/Statlog+%28German+Credit+Data%29) from the [UCI ML repository](https://archive.ics.uci.edu/ml/datasets).
Dataset on loan grants to customers.
# Configurations and tasks
| **Configuration** | **Task** | Description |
|-------------------|---------------------------|-----------------------------------------------------------------|
| encoding | | Encoding dictionary showing original values of encoded features.|
| loan | Binary classification | Has the loan request been accepted? |
# Usage
```python
from datasets import load_dataset
dataset = load_dataset("mstz/german", "loan")["train"]
```
# Features
|**Feature** |**Type** |
|------------------------------------|-----------|
|`checking_account_status` | `int8` |
|`account_life_in_months` | `int8` |
|`credit_status` | `int8` |
|`loan_purpose` | `string` |
|`current_credit` | `int32` |
|`current_savings` | `int8` |
|`employed_since` | `int8` |
|`installment_rate_percentage` | `int8` |
|`sex` | `int8` |
|`marital_status` | `string` |
|`guarantors` | `int8` |
|`years_living_in_current_residence` | `int8` |
|`age` | `int8` |
|`installment_plans` | `string` |
|`housing_status` | `int8` |
|`nr_credit_accounts_in_bank` | `int8` |
|`job_status` | `int8` |
|`number_of_people_in_support` | `int8` |
|`has_registered_phone_number` | `int8` |
|`is_foreign` | `int8` | |