Insurance Lead Prediction Raw Data
A Insurance policy is recommended to a person when Response is 1.
@kaggle.owaiskhan9654_health_insurance_lead_prediction_raw_data
A Insurance policy is recommended to a person when Response is 1.
@kaggle.owaiskhan9654_health_insurance_lead_prediction_raw_data
For the data and objective, it is evident that this is a Binary Classification Problem data in the Tabular Data format.
A policy is recommended to a person when they land on an insurance website, and if the person chooses to fill up a form to apply, it is considered a Positive outcome (Classified as lead). All other conditions are considered Zero outcomes.
CREATE TABLE health_insurance_lead_prediction_raw_data (
  "id" BIGINT,
  "city_code" VARCHAR,
  "region_code" BIGINT,
  "accomodation_type" VARCHAR,
  "reco_insurance_type" VARCHAR,
  "upper_age" BIGINT,
  "lower_age" BIGINT,
  "is_spouse" VARCHAR,
  "health_indicator" VARCHAR,
  "holding_policy_duration" VARCHAR,
  "holding_policy_type" DOUBLE,
  "reco_policy_cat" BIGINT,
  "reco_policy_premium" DOUBLE,
  "response" BIGINT
);Anyone who has the link will be able to view this.