CSCI-4830-002-2014 / hackathon-yelp

0 stars 6 forks source link

What are the highest rated dance studios in New York? #16

Open Irfann1 opened 9 years ago

BrianNewsom commented 9 years ago

Mike Todd's Raw Body Boot Camp is the highest rated dance studio with 4 reviews of 5 stars

BrianNewsom commented 9 years ago

image

db.business.find({"open":true, "city":"New York", review_count : {$gt : 3}}).sort({'stars':-1}).limit(1)
antsankov commented 9 years ago

I was answering this same question and I noticed that there was only 1 entry for dance studios in New York.

My command was db.business.find({'categories': {$in :[ "Active Life", "Fitness & Instruction", "Trainers", "Boot Camps" ]}, 'city' : 'New York'},{'name':1})

Irfann1 commented 9 years ago

When I was originally looking at the data, I thought I was looking at New York, but it turned out to actually be Las Vegas with a number of dance studios.

The Pointe Dance Center Studi0hm The Rock Center For Dance Las Vegas School of Dance & Music Las Vegas Burlesque Classes

db.business.find({'city' : 'Las Vegas','categories':'Dance Studios'}, {'_id':0, 'name':1, 'city':1, 'stars':1}).sort({ 'stars':-1}).limit(50);

screen shot 2014-10-27 at 7 17 16 pm