Chick-fil-a Data, Locations, And Sandwich Prices
Can the chicken sandwich prices at Chick-fil-a be predicted?
@kaggle.robertm256_chick_fil_a_data_locations_and_sandwich_prices
Can the chicken sandwich prices at Chick-fil-a be predicted?
@kaggle.robertm256_chick_fil_a_data_locations_and_sandwich_prices
The price of a Chick-fil-a chicken sandwich (which is their most popular item) varies by location in the United States. Data was collected from publicly available information about each Chick-fil-a restaurant, such as location and if the restaurant has mobile orders, catering, pickup, delivery, wi-fi, a playground, breakfast, and a drive-thru. The data also provides the price (in USD) of a chicken sandwich, as listed on the restaurant's menu to see what variables might contribute to setting the price.
CREATE TABLE chickfiladata (
"id" BIGINT,
"state" VARCHAR,
"location" VARCHAR,
"mobile_orders" BOOLEAN,
"catering" BOOLEAN,
"pickup" BOOLEAN,
"delivery" BOOLEAN,
"wifi" BOOLEAN,
"playground" BOOLEAN,
"breakfast_served" BOOLEAN,
"drive_thru" BOOLEAN,
"cost_of_chicken_sandwich" DOUBLE
);Anyone who has the link will be able to view this.