Online Food Dataset
Demographics & Locations in Online Food Ordering
@kaggle.sudarshan24byte_online_food_dataset
Demographics & Locations in Online Food Ordering
@kaggle.sudarshan24byte_online_food_dataset
Description:
The dataset contains information collected from an online food ordering platform over a period of time. It encompasses various attributes related to Occupation, Family Size, Feedback etc..
Attributes:
Demographic Information:
Age: Age of the customer.
Gender: Gender of the customer.
Marital Status: Marital status of the customer.
Occupation: Occupation of the customer.
Monthly Income: Monthly income of the customer.
Educational Qualifications: Educational qualifications of the customer.
Family Size: Number of individuals in the customer's family.
Location Information:
Latitude: Latitude of the customer's location.
Longitude: Longitude of the customer's location.
Pin Code: Pin code of the customer's location.
Order Details:
Output: Current status of the order (e.g., pending, confirmed, delivered).
Feedback: Feedback provided by the customer after receiving the order.
Purpose:
This dataset can be utilized to explore the relationship between demographic/location factors and online food ordering behavior, analyze customer feedback to improve service quality, and potentially predict customer preferences or behavior based on demographic and location attributes.
CREATE TABLE onlinefoods (
"age" BIGINT,
"gender" VARCHAR,
"marital_status" VARCHAR,
"occupation" VARCHAR,
"monthly_income" VARCHAR,
"educational_qualifications" VARCHAR,
"family_size" BIGINT,
"latitude" DOUBLE,
"longitude" DOUBLE,
"pin_code" BIGINT,
"output" VARCHAR,
"feedback" VARCHAR,
"unnamed_12" VARCHAR -- Unnamed: 12
);Anyone who has the link will be able to view this.