Restaurant Bill & Tip Study
Predicting tip amounts based on meal cost, party size, and dining factors.
@kaggle.ahmadrazakashif_restaurant_bill_and_tip_study
Predicting tip amounts based on meal cost, party size, and dining factors.
@kaggle.ahmadrazakashif_restaurant_bill_and_tip_study
This dataset contains data about restaurant bills and tips, including the total bill, tip amount, gender, smoking status, day, time of meal, and party size. It is commonly used to study tipping conduct and customer spending patterns
CREATE TABLE tip (
"total_bill" DOUBLE,
"tip" DOUBLE,
"sex" VARCHAR,
"smoker" VARCHAR,
"day" VARCHAR,
"time" VARCHAR,
"size" BIGINT
);
Anyone who has the link will be able to view this.