Update README.md
Browse files
README.md
CHANGED
@@ -39,7 +39,56 @@ dataset_info:
|
|
39 |
num_examples: 689
|
40 |
download_size: 17253
|
41 |
dataset_size: 69072
|
|
|
|
|
|
|
|
|
|
|
|
|
42 |
---
|
43 |
-
#
|
44 |
|
45 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
39 |
num_examples: 689
|
40 |
download_size: 17253
|
41 |
dataset_size: 69072
|
42 |
+
license: cc
|
43 |
+
language:
|
44 |
+
- en
|
45 |
+
pretty_name: data-credit-card
|
46 |
+
size_categories:
|
47 |
+
- n<1K
|
48 |
---
|
49 |
+
# data-credit-card
|
50 |
|
51 |
+
## Overview
|
52 |
+
|
53 |
+
The data-credit-card dataset is used for credit card applications. It can also be used to explore biases in ML algorithms.
|
54 |
+
|
55 |
+
## Dataset Details
|
56 |
+
|
57 |
+
The original dataset, the [Credit Approval](https://archive.ics.uci.edu/datasets). This file concerns credit card applications.
|
58 |
+
All attribute names and values have been changed to meaningless symbols to protect the confidentiality of the data.
|
59 |
+
|
60 |
+
- Dataset Name: data-credit-card
|
61 |
+
- Language: English
|
62 |
+
- Total Size: 689 demonstrations
|
63 |
+
|
64 |
+
## Contents
|
65 |
+
The dataset consists of a data frame with 16 columns.
|
66 |
+
- A1: b, a.
|
67 |
+
- A2: continuous.
|
68 |
+
- A3: continuous.
|
69 |
+
- A4: u, y, l, t.
|
70 |
+
- A5: g, p, gg.
|
71 |
+
- A6: c, d, cc, i, j, k, m, r, q, w, x, e, aa, ff.
|
72 |
+
- A7: v, h, bb, j, n, z, dd, ff, o.
|
73 |
+
- A8: continuous.
|
74 |
+
- A9: t, f.
|
75 |
+
- A10: t, f.
|
76 |
+
- A11: continuous.
|
77 |
+
- A12: t, f.
|
78 |
+
- A13: g, p, s.
|
79 |
+
- A14: continuous.
|
80 |
+
- A15: continuous.
|
81 |
+
- A16: + (44,4%) ,- (55,6%) (class attribute)
|
82 |
+
|
83 |
+
## How to use
|
84 |
+
|
85 |
+
```python
|
86 |
+
from datasets import load_dataset
|
87 |
+
|
88 |
+
dataset = load_dataset("AiresPucrs/data-credit-card", split='train')
|
89 |
+
|
90 |
+
```
|
91 |
+
|
92 |
+
## License
|
93 |
+
|
94 |
+
This dataset is licensed under a [Creative Commons Attribution 4.0 International](https://creativecommons.org/licenses/by/4.0/legalcode) (CC BY 4.0) license.
|