Baselight

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

About this Dataset

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.

Tables

Chickfiladata

@kaggle.robertm256_chick_fil_a_data_locations_and_sandwich_prices.chickfiladata
  • 68.72 KB
  • 2990 rows
  • 12 columns
Loading...

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
);