Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

What is the least rated restaurant in Boulder, CO? #6

Open
ianks opened this issue Oct 28, 2014 · 2 comments
Open

What is the least rated restaurant in Boulder, CO? #6

ianks opened this issue Oct 28, 2014 · 2 comments

Comments

@ianks
Copy link

ianks commented Oct 28, 2014

No description provided.

@dawsbot
Copy link

dawsbot commented Oct 28, 2014

Vegas has alot of 5 star restaurants. So these are all the restaurants in Vegas sorted by starts. As you can see, Subway is on there...
Query string:
db.business.find({'city': 'Las Vegas', 'categories': 'Restaurants'},{'_id':0,'name':1, 'stars':1}).sort({'stars':-1})

Results:

{ "name" : "Sushi House Manda", "stars" : 5 }
{ "name" : "Montesano's Italian Deli", "stars" : 5 }
{ "name" : "El Ausente", "stars" : 5 }
{ "name" : "Sahara Korean Restaurant", "stars" : 5 }
{ "name" : "Subway", "stars" : 5 }
{ "name" : "Bertolini's Authentic Trattoria", "stars" : 5 }
{ "name" : "Farm Basket", "stars" : 5 }
{ "name" : "Bonjour Bistro", "stars" : 5 }
{ "name" : "The Paiza Club", "stars" : 5 }
{ "name" : "Bar Charlie", "stars" : 5 }
{ "name" : "Bonzai Bob's", "stars" : 5 }
{ "name" : "Snow Ono Shave Ice", "stars" : 5 }
{ "name" : "Poppa Naps BBQ", "stars" : 5 }
{ "name" : "Love Empanadas", "stars" : 5 }
{ "name" : "La Tradicion", "stars" : 5 }
{ "name" : "Daraa Halal Market", "stars" : 5 }
{ "name" : "City Express - Sinclair", "stars" : 5 }
{ "name" : "Sno Shack Hawaiian Shave Ice", "stars" : 5 }
{ "name" : "Soul Food Cafe Express", "stars" : 5 }
has more

@dawsbot
Copy link

dawsbot commented Oct 28, 2014

Decided instead to sort by most review_counts. There is a restaurant with 183 5 star reviews and nothing less!

b.business.find({'city': 'Las Vegas', 'categories': 'Restaurants', 'stars' : 5},{'_id':0,'name':1, 'stars':1, 'review_count':1}).sort({'review_count':-1});

{ "review_count" : 137, "name" : "Snow Ono Shave Ice", "stars" : 5 }
{ "review_count" : 68, "name" : "Layla Grill & Hookah", "stars" : 5 }
{ "review_count" : 51, "name" : "Tasty Crepes", "stars" : 5 }
{ "review_count" : 31, "name" : "Mariscos Playa Escondida", "stars" : 5 }
{ "review_count" : 28, "name" : "Poppa Naps BBQ", "stars" : 5 }
{ "review_count" : 22, "name" : "Moko Tapas Bar", "stars" : 5 }
{ "review_count" : 18, "name" : "Garden Grill", "stars" : 5 }
{ "review_count" : 16, "name" : "Sno Shack Hawaiian Shave Ice", "stars" : 5 }
{ "review_count" : 14, "name" : "Bar Charlie", "stars" : 5 }
{ "review_count" : 12, "name" : "Made In Italy Pizzeria Romana", "stars" : 5 }
{ "review_count" : 11, "name" : "The Paiza Club", "stars" : 5 }
{ "review_count" : 8, "name" : "El Ausente", "stars" : 5 }
{ "review_count" : 8, "name" : "Tacos El Compita 3", "stars" : 5 }
{ "review_count" : 8, "name" : "Body Food Kitchen", "stars" : 5 }
{ "review_count" : 8, "name" : "Arepa Xpress", "stars" : 5 }
{ "review_count" : 8, "name" : "Zeffirino's", "stars" : 5 }
{ "review_count" : 7, "name" : "Subway", "stars" : 5 }
{ "review_count" : 7, "name" : "Winter In July - A Pop-Up Lunch with Yonaka and Snow Shavery", "stars" : 5 }
{ "review_count" : 7, "name" : "Euro Market & Deli", "stars" : 5 }

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

3 participants
@ianks @dawsbot and others