German Credit Data
Credit Cassification
@kaggle.varunchawla30_german_credit_data
Credit Cassification
@kaggle.varunchawla30_german_credit_data
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. The column names were also given in German originally. So, they are replaced by English names while processing. The attributes and their details in English are given below:
Source : UCI
CREATE TABLE german_credit_data (
"laufkont" BIGINT,
"laufzeit" BIGINT,
"moral" BIGINT,
"verw" BIGINT,
"hoehe" BIGINT,
"sparkont" BIGINT,
"beszeit" BIGINT,
"rate" BIGINT,
"famges" BIGINT,
"buerge" BIGINT,
"wohnzeit" BIGINT,
"verm" BIGINT,
"alter" BIGINT,
"weitkred" BIGINT,
"wohn" BIGINT,
"bishkred" BIGINT,
"beruf" BIGINT,
"pers" BIGINT,
"telef" BIGINT,
"gastarb" BIGINT,
"kredit" BIGINT
);Anyone who has the link will be able to view this.