🍴USA Yelp Eats 2024: Top Dining Gems Revealed 🌟
Unveiling Culinary Treasures Across the USA
@kaggle.kanchana1990_usa_yelp_eats_2024_top_dining_gems_revealed
Unveiling Culinary Treasures Across the USA
@kaggle.kanchana1990_usa_yelp_eats_2024_top_dining_gems_revealed
This comprehensive dataset aggregates restaurant listings and reviews from Yelp across seven key states in the USA: Hawaii, Illinois, Michigan, Texas, Nevada, California, and New York. Designed for detailed analysis, it captures the rich diversity of the American culinary scene, presenting an invaluable resource for enthusiasts and professionals alike.
Ideal for exploratory data analysis, sentiment analysis, trend forecasting, and geographic information system (GIS) mapping, this dataset serves a wide array of data science applications. It's particularly suited for predictive modeling of restaurant success factors, customer preferences analysis, and regional culinary trend identification.
This dataset was ethically mined, adhering to all applicable data privacy laws and guidelines. It consists solely of publicly available information that does not compromise individual privacy or business confidentiality.
Heartfelt thanks to Yelp for providing an open platform that encourages the sharing of honest customer feedback and experiences. This dataset stands as a testament to the vibrant and diverse culinary culture thriving across the USA, made visible through the collective voice of the Yelp community.
CREATE TABLE yelp_restaurants_california (
"name" VARCHAR,
"type" VARCHAR,
"pricerange" VARCHAR,
"cuisine" VARCHAR,
"aggregatedrating" DOUBLE,
"reviewcount" BIGINT,
"directurl" VARCHAR,
"website" VARCHAR
);CREATE TABLE yelp_restaurants_hawaii (
"name" VARCHAR,
"type" VARCHAR,
"pricerange" VARCHAR,
"cuisine" VARCHAR,
"aggregatedrating" DOUBLE,
"reviewcount" BIGINT,
"directurl" VARCHAR,
"website" VARCHAR
);CREATE TABLE yelp_restaurants_illinois (
"name" VARCHAR,
"type" VARCHAR,
"pricerange" VARCHAR,
"cuisine" VARCHAR,
"aggregatedrating" DOUBLE,
"reviewcount" BIGINT,
"directurl" VARCHAR,
"website" VARCHAR
);CREATE TABLE yelp_restaurants_michigan (
"name" VARCHAR,
"type" VARCHAR,
"pricerange" VARCHAR,
"cuisine" VARCHAR,
"aggregatedrating" DOUBLE,
"reviewcount" BIGINT,
"directurl" VARCHAR,
"website" VARCHAR
);CREATE TABLE yelp_restaurants_nevada (
"name" VARCHAR,
"type" VARCHAR,
"pricerange" VARCHAR,
"cuisine" VARCHAR,
"aggregatedrating" DOUBLE,
"reviewcount" BIGINT,
"directurl" VARCHAR,
"website" VARCHAR
);CREATE TABLE yelp_restaurants_new_york (
"name" VARCHAR,
"type" VARCHAR,
"pricerange" VARCHAR,
"cuisine" VARCHAR,
"aggregatedrating" DOUBLE,
"reviewcount" BIGINT,
"directurl" VARCHAR,
"website" VARCHAR
);CREATE TABLE yelp_restaurants_texas (
"name" VARCHAR,
"type" VARCHAR,
"pricerange" VARCHAR,
"cuisine" VARCHAR,
"aggregatedrating" DOUBLE,
"reviewcount" BIGINT,
"directurl" VARCHAR,
"website" VARCHAR
);Anyone who has the link will be able to view this.