German Credit Risk
Credit classification
@kaggle.uciml_german_credit
Credit classification
@kaggle.uciml_german_credit
The original dataset contains 1000 entries with 20 categorial/symbolic attributes prepared by Prof. Hofmann. In this dataset, each entry represents a person who takes a credit by a bank. Each person is classified as good or bad credit risks according to the set of attributes. The link to the original dataset can be found below.
It is almost impossible to understand the original dataset due to its complicated system of categories and symbols. Thus, I wrote a small Python script to convert it into a readable CSV file. Several columns are simply ignored, because in my opinion either they are not important or their descriptions are obscure. The selected attributes are:
Source: UCI
CREATE TABLE german_credit_data (
"unnamed_0" BIGINT -- Unnamed: 0,
"age" BIGINT,
"sex" VARCHAR,
"job" BIGINT,
"housing" VARCHAR,
"saving_accounts" VARCHAR,
"checking_account" VARCHAR,
"credit_amount" BIGINT,
"duration" BIGINT,
"purpose" VARCHAR
);Anyone who has the link will be able to view this.