User's Age By Expenses
This set contains information about user's age and expenses in 204 spheres
@kaggle.aleksandrdremov_sberbank_users_expenses
This set contains information about user's age and expenses in 204 spheres
@kaggle.aleksandrdremov_sberbank_users_expenses
This dataset was released as part of the Russian open competition held by Sberbank and Educational Center Sirius.
Files contain information about users' expenses in 204 different spheres. Also, you are provided with information about users' age. Age presented in 3 groups: young, adult, old. I suppose that such grouping was due to possible privacy issues.
This is a project just for training and studying.
Is it possible to predict an age by this data?
CREATE TABLE small_group_description (
"small_group" VARCHAR,
"small_group_code" BIGINT
);CREATE TABLE test (
"cl" BIGINT,
"ent" VARCHAR,
"d" VARCHAR
);CREATE TABLE train_target (
"client_id" BIGINT,
"bins" BIGINT
);CREATE TABLE transactions_test (
"client_id" BIGINT,
"trans_date" BIGINT,
"small_group" BIGINT,
"amount_rur" DOUBLE
);CREATE TABLE transactions_train (
"client_id" BIGINT,
"trans_date" BIGINT,
"small_group" BIGINT,
"amount_rur" DOUBLE
);Anyone who has the link will be able to view this.