Sales And Satisfaction
Exploring the Impact of Interventions on Sales Performance and Satisfaction
@kaggle.matinmahmoudi_sales_and_satisfaction
Exploring the Impact of Interventions on Sales Performance and Satisfaction
@kaggle.matinmahmoudi_sales_and_satisfaction
One dataset contains missing values (NaNs) and the other does not. These datasets contain information on sales and customer satisfaction before and after an intervention, as well as purchase data for control and treatment groups. The dataset is synthetic and was created for use in statistical analysis.
Group
Control, TreatmentCustomer_Segment
High Value, Medium Value, Low ValueSales_Before
Sales_After
Customer_Satisfaction_Before
Customer_Satisfaction_After
Purchase_Made
Yes, NoCREATE TABLE sales_with_nans_v1_3 (
  "group" VARCHAR,
  "customer_segment" VARCHAR,
  "sales_before" DOUBLE,
  "sales_after" DOUBLE,
  "customer_satisfaction_before" DOUBLE,
  "customer_satisfaction_after" DOUBLE,
  "purchase_made" VARCHAR
);CREATE TABLE sales_without_nans_v1_3 (
  "group" VARCHAR,
  "customer_segment" VARCHAR,
  "sales_before" DOUBLE,
  "sales_after" DOUBLE,
  "customer_satisfaction_before" DOUBLE,
  "customer_satisfaction_after" DOUBLE,
  "purchase_made" VARCHAR
);Anyone who has the link will be able to view this.