Datasets¶
Loads the UCI Credit Card Dataset.
This dataset contains a sample of Default of Credit Card Clients Dataset.
Example:
from skorecard import datasets
df = datasets.load_uci_credit_card(as_frame=True)
Parameters:
Name | Type | Description | Default |
---|---|---|---|
return_X_y |
bool
|
If True, returns |
False
|
as_frame |
bool
|
give the pandas dataframe instead of X, y matrices (default=False). |
False
|
(pd.DataFrame, dict or tuple) features and target, with as follows:
Type | Description |
---|---|
|
|
|
|
|
|
and the key |
Source code in skorecard/datasets.py
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 |
|