Chapter 35 Top Ten Business in Toronto

We list the Top Ten business in Toronto giving importance to the number of reviews and then to the number of stars obtained by the business.

toronto_biz = business %>%
  filter(city == "Toronto") %>%
  arrange(desc(review_count,stars)) %>%
  select(name,neighborhood,address,review_count,stars) %>%
  head(10)

datatable(toronto_biz, style="bootstrap", class="table-condensed", options = list(dom = 'tp',scrollX = TRUE))