Restaurant Tips Dataset
Analyzing Factors Influencing Tips in a Restaurant Setting
@kaggle.saurabhbadole_restaurant_tips_dataset
Analyzing Factors Influencing Tips in a Restaurant Setting
@kaggle.saurabhbadole_restaurant_tips_dataset
The "Restaurant Tips Dataset" provides a detailed look into tipping behavior in a restaurant setting. Collected over a significant period, this dataset includes various factors that could influence the tip amount given by customers. Each entry in the dataset represents an individual transaction and captures the following information:
Variable Name | Description |
---|---|
total_bill | Total bill amount in dollars |
tip | Tip amount in dollars |
sex | Gender of the person paying the bill (Male/Female) |
smoker | Whether the person is a smoker (Yes/No) |
day | Day of the week when the transaction took place (Thur/Fri/Sat/Sun) |
time | Time of day when the transaction took place (Lunch/Dinner) |
size | Size of the dining party (number of people) |
CREATE TABLE tips (
"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.