Vehicle Insurance Purchase Response
Predicting Customer Interest in Vehicle Insurance Using Demographic and Policy D
@kaggle.baleshs_vehicle_insurance_purchase_response
Predicting Customer Interest in Vehicle Insurance Using Demographic and Policy D
@kaggle.baleshs_vehicle_insurance_purchase_response
This dataset includes 381,109 records with customer demographics and vehicle information, designed to help predict customer response to vehicle insurance offers. It contains 12 attributes, including a target column, "Response," indicating whether the customer is interested in purchasing insurance. The dataset can be used to develop predictive models for identifying potential customers and improving insurance sales strategies.
CREATE TABLE test_pruning (
"id" BIGINT,
"gender" VARCHAR,
"age" BIGINT,
"driving_license" BIGINT,
"region_code" DOUBLE,
"previously_insured" BIGINT,
"vehicle_age" VARCHAR,
"vehicle_damage" VARCHAR,
"annual_premium" DOUBLE,
"policy_sales_channel" DOUBLE,
"vintage" BIGINT
);
CREATE TABLE train_pruning (
"id" BIGINT,
"gender" VARCHAR,
"age" BIGINT,
"driving_license" BIGINT,
"region_code" DOUBLE,
"previously_insured" BIGINT,
"vehicle_age" VARCHAR,
"vehicle_damage" VARCHAR,
"annual_premium" DOUBLE,
"policy_sales_channel" DOUBLE,
"vintage" BIGINT,
"response" BIGINT
);
Anyone who has the link will be able to view this.