diff --git a/DESCRIPTION b/DESCRIPTION index 2de2d83..fbc9a3a 100644 --- a/DESCRIPTION +++ b/DESCRIPTION @@ -1,7 +1,7 @@ Type: Package Package: outscrapr Title: Unofficial Uncompleted Outscraper API -Version: 0.0.1 +Version: 0.0.2 Authors@R: person("Corrado", "Lanera", , "corrado.lanera@ubep.unipd.it", role = c("aut", "cre"), comment = c(ORCID = "0000-0002-0520-7428")) diff --git a/README.Rmd b/README.Rmd index bc7954e..8d12977 100644 --- a/README.Rmd +++ b/README.Rmd @@ -44,11 +44,13 @@ library(outscrapr) query <- "restaurants, Brooklyn 11203" restaurants <- google_maps_search(query = query, limit = 2) - -restaurants +restaurants |> + tibble::as_tibble() restaurants$working_hours -restaurants$about +restaurants$about |> + tibble::as_tibble() + restaurants$about$`Popular for` restaurants$reviews_per_score ``` @@ -68,9 +70,13 @@ queries <- c( # Results' limit refers to the number of places to retrieve for each # query. The results of all queries are combined into a single tibble. multi_restaurants <- google_maps_search(query = queries, limit = 2) -multi_restaurants +multi_restaurants |> + tibble::as_tibble() + multi_restaurants$working_hours -multi_restaurants$about +multi_restaurants$about |> + tibble::as_tibble() + multi_restaurants$about$Highlights multi_restaurants$reviews_per_score ``` @@ -85,16 +91,23 @@ library(outscrapr) query <- "restaurants, Brooklyn 11203" restaurant <- google_maps_search(query = query, limit = 1) -restaurant +restaurant |> + tibble::as_tibble() reviews <- restaurant[["place_id"]] |> google_maps_reviews(reviews_limit = 2) -reviews +reviews |> + tibble::as_tibble() + identical(reviews$place_id, restaurant$place_id) -reviews$reviews -reviews$reviews_data +reviews$reviews |> + tibble::as_tibble() + +reviews$reviews_data[[1]] |> + tibble::as_tibble() + reviews$reviews_data[[1]]$review_text reviews$reviews_data[[1]]$review_questions diff --git a/README.md b/README.md index 0060b99..1255d1e 100644 --- a/README.md +++ b/README.md @@ -37,106 +37,48 @@ library(outscrapr) query <- "restaurants, Brooklyn 11203" restaurants <- google_maps_search(query = query, limit = 2) - -restaurants +restaurants |> + tibble::as_tibble() #> # A tibble: 2 × 58 #> query name name_for_emails place_id google_id full_address borough street #> -#> 1 restaura… Suede Suede ChIJCzJ… 0x89c25c… 5610 Claren… East F… 5610 … -#> 2 restaura… LILL… Lilli Restaura… ChIJU4x… 0x89c25d… 1344 Utica … East F… 1344 … +#> 1 restaura… LILL… Lilli Restaura… ChIJU4x… 0x89c25d… 1344 Utica … East F… 1344 … +#> 2 restaura… Irie… Irie Bliss Res… ChIJJ8K… 0x89c25b… 3916 Church… Little… 3916 … #> # ℹ 50 more variables: postal_code , area_service , #> # country_code , country , city , us_state , state , #> # plus_code , latitude , longitude , h3 , #> # time_zone , popular_times , site , phone , type , -#> # logo , description , typical_time_spent , located_in , +#> # logo , description , typical_time_spent , located_in , #> # located_google_id , category , subtypes , posts , #> # reviews_tags , rating , reviews , photos_count , … restaurants$working_hours -#> Monday Tuesday Wednesday Thursday Friday Saturday Sunday -#> 1 4-10PM Closed Closed 4-10PM 2-11PM 2-11PM 1-10PM -#> 2 4-10PM 4-10PM 4-10PM 4-10PM 4PM-1AM 12PM-1AM 12-10PM -restaurants$about -#> Identifies as women-owned Service options.Outdoor seating -#> 1 TRUE TRUE -#> 2 NA NA -#> Service options.Delivery Service options.Takeout Service options.Dine-in -#> 1 TRUE TRUE TRUE -#> 2 NA TRUE TRUE -#> Service options.Curbside pickup Service options.No-contact delivery -#> 1 NA NA -#> 2 TRUE TRUE -#> Highlights.Fireplace Highlights.Great cocktails Highlights.Fast service -#> 1 TRUE TRUE NA -#> 2 NA NA TRUE -#> Popular for.Lunch Popular for.Dinner Popular for.Solo dining -#> 1 TRUE TRUE TRUE -#> 2 TRUE TRUE TRUE -#> Accessibility.Wheelchair accessible entrance -#> 1 TRUE -#> 2 TRUE -#> Accessibility.Wheelchair accessible restroom -#> 1 TRUE -#> 2 NA -#> Accessibility.Wheelchair accessible seating Offerings.Alcohol Offerings.Beer -#> 1 TRUE TRUE TRUE -#> 2 NA TRUE TRUE -#> Offerings.Cocktails Offerings.Coffee Offerings.Comfort food -#> 1 TRUE TRUE TRUE -#> 2 TRUE TRUE TRUE -#> Offerings.Happy hour drinks Offerings.Happy hour food Offerings.Hard liquor -#> 1 TRUE TRUE TRUE -#> 2 TRUE NA TRUE -#> Offerings.Healthy options Offerings.Late-night food -#> 1 TRUE TRUE -#> 2 TRUE NA -#> Offerings.Private dining room Offerings.Quick bite Offerings.Small plates -#> 1 TRUE TRUE TRUE -#> 2 NA NA TRUE -#> Offerings.Vegetarian options Offerings.Wine Dining options.Brunch -#> 1 TRUE TRUE TRUE -#> 2 NA TRUE TRUE -#> Dining options.Lunch Dining options.Dinner Dining options.Catering -#> 1 TRUE TRUE TRUE -#> 2 TRUE TRUE NA -#> Dining options.Counter service Dining options.Dessert Dining options.Seating -#> 1 TRUE TRUE TRUE -#> 2 NA TRUE NA -#> Amenities.Bar onsite Amenities.Gender-neutral restroom Amenities.Restroom -#> 1 TRUE TRUE TRUE -#> 2 TRUE NA TRUE -#> Amenities.Wi-Fi Atmosphere.Casual Atmosphere.Cozy Atmosphere.Romantic -#> 1 TRUE TRUE TRUE TRUE -#> 2 NA TRUE TRUE NA -#> Atmosphere.Trendy Atmosphere.Upscale Crowd.College students -#> 1 TRUE TRUE TRUE -#> 2 TRUE NA NA -#> Crowd.Family-friendly Crowd.Groups Crowd.Tourists -#> 1 TRUE TRUE TRUE -#> 2 NA TRUE NA -#> Planning.Lunch reservations recommended -#> 1 TRUE -#> 2 NA -#> Planning.Dinner reservations recommended Planning.Accepts reservations -#> 1 TRUE TRUE -#> 2 NA TRUE -#> Planning.Usually a wait Payments.Credit cards Payments.Debit cards -#> 1 TRUE TRUE TRUE -#> 2 NA TRUE NA -#> Payments.NFC mobile payments High chairs Parking.Free street parking -#> 1 TRUE TRUE TRUE -#> 2 NA NA TRUE -#> Parking.Parking Identifies as women-owned -#> 1 NA TRUE -#> 2 TRUE NA +#> Monday Tuesday Wednesday Thursday Friday Saturday Sunday +#> 1 4-10PM 4-10PM 4-10PM 4-10PM 4PM-1AM 12PM-1AM 12-10PM +#> 2 Closed 10AM-10PM 10AM-10PM 10AM-10PM 8AM-10PM 10AM-10PM 10AM-6PM +restaurants$about |> + tibble::as_tibble() +#> # A tibble: 2 × 12 +#> `Service options`$`Curbside pickup` Highlights$Fast serv…¹ `Popular for`$Lunch +#> +#> 1 TRUE TRUE TRUE +#> 2 TRUE NA TRUE +#> # ℹ abbreviated name: ¹​Highlights$`Fast service` +#> # ℹ 16 more variables: `Service options`$`No-contact delivery` , +#> # $Takeout , $`Dine-in` , $Delivery , +#> # `Popular for`$Dinner , $`Solo dining` , $Breakfast , +#> # Accessibility , Offerings , `Dining options` , +#> # Amenities , Atmosphere , Crowd , Planning , +#> # Payments , Parking + restaurants$about$`Popular for` -#> Lunch Dinner Solo dining -#> 1 TRUE TRUE TRUE -#> 2 TRUE TRUE TRUE +#> Lunch Dinner Solo dining Breakfast +#> 1 TRUE TRUE TRUE NA +#> 2 TRUE TRUE TRUE TRUE restaurants$reviews_per_score -#> 1 2 3 4 5 -#> 1 294 126 269 664 1225 -#> 2 10 6 6 20 215 +#> 1 2 3 4 5 +#> 1 10 6 6 20 215 +#> 2 0 0 0 1 28 ``` ### Multiple queries @@ -155,12 +97,13 @@ queries <- c( # Results' limit refers to the number of places to retrieve for each # query. The results of all queries are combined into a single tibble. multi_restaurants <- google_maps_search(query = queries, limit = 2) -multi_restaurants +multi_restaurants |> + tibble::as_tibble() #> # A tibble: 4 × 58 #> query name name_for_emails place_id google_id full_address borough street #> -#> 1 restaura… Lilia Lilia ChIJJXC… 0x89c259… 567 Union A… Willia… 567 U… -#> 2 restaura… The … The Commodore ChIJpwY… 0x89c259… 366 Metropo… Willia… 366 M… +#> 1 restaura… The … The Commodore ChIJpwY… 0x89c259… 366 Metropo… Willia… 366 M… +#> 2 restaura… Lilia Lilia ChIJJXC… 0x89c259… 567 Union A… Willia… 567 U… #> 3 restaura… Chela Chela ChIJ3Vk… 0x89c25a… 408 5th Ave… Park S… 408 5… #> 4 restaura… The … The Common Par… ChIJR-z… 0x89c25b… 548 4th Ave… Gowanus 548 4… #> # ℹ 50 more variables: postal_code , area_service , @@ -170,173 +113,45 @@ multi_restaurants #> # logo , description , typical_time_spent , located_in , #> # located_google_id , category , subtypes , posts , #> # reviews_tags , rating , reviews , photos_count , … + multi_restaurants$working_hours -#> Monday Tuesday Wednesday Thursday -#> 1 5-9:30PM 5-9:30PM 5-9:30PM 5-9:30PM -#> 2 4PM-4AM 4PM-4AM 4PM-4AM 4PM-4AM -#> 3 12-10PM 12-10PM 12-10PM 12-10PM -#> 4 8:30AM-3:30PM 8:30AM-3:30PM,5-9:30PM 8:30AM-3:30PM,5-9:30PM 8:30AM-3:30PM -#> Friday Saturday Sunday -#> 1 4-9:30PM 4-9:30PM 4-9:30PM -#> 2 4PM-4AM 11AM-4AM 11AM-4AM -#> 3 12-11PM 11AM-11PM 11AM-10PM -#> 4 8:30AM-3:30PM,5-9:30PM 8:30AM-3:30PM 8:30AM-3:30PM -multi_restaurants$about -#> Service options.Outdoor seating Service options.Takeout -#> 1 TRUE TRUE -#> 2 TRUE TRUE -#> 3 TRUE TRUE -#> 4 NA TRUE -#> Service options.Dine-in Service options.Delivery -#> 1 TRUE FALSE -#> 2 TRUE TRUE -#> 3 TRUE TRUE -#> 4 TRUE TRUE -#> Service options.Curbside pickup Service options.No-contact delivery -#> 1 NA NA -#> 2 NA NA -#> 3 TRUE TRUE -#> 4 TRUE TRUE -#> Highlights.Great coffee Highlights.Great dessert Highlights.Fast service -#> 1 TRUE TRUE NA -#> 2 NA NA TRUE -#> 3 NA NA TRUE -#> 4 TRUE NA TRUE -#> Highlights.Live music Popular for.Lunch Popular for.Dinner -#> 1 NA TRUE TRUE -#> 2 NA TRUE TRUE -#> 3 TRUE TRUE TRUE -#> 4 NA TRUE TRUE -#> Popular for.Solo dining Popular for.Breakfast -#> 1 TRUE NA -#> 2 TRUE NA -#> 3 TRUE NA -#> 4 TRUE TRUE -#> Accessibility.Wheelchair accessible entrance -#> 1 TRUE -#> 2 TRUE -#> 3 TRUE -#> 4 TRUE -#> Accessibility.Wheelchair accessible restroom -#> 1 TRUE -#> 2 NA -#> 3 TRUE -#> 4 TRUE -#> Accessibility.Wheelchair accessible seating -#> 1 TRUE -#> 2 TRUE -#> 3 TRUE -#> 4 TRUE -#> Accessibility.Wheelchair accessible parking lot Offerings.Alcohol -#> 1 FALSE TRUE -#> 2 FALSE TRUE -#> 3 FALSE TRUE -#> 4 FALSE TRUE -#> Offerings.Beer Offerings.Cocktails Offerings.Coffee Offerings.Comfort food -#> 1 TRUE TRUE TRUE TRUE -#> 2 TRUE TRUE NA TRUE -#> 3 TRUE TRUE TRUE TRUE -#> 4 TRUE NA TRUE TRUE -#> Offerings.Hard liquor Offerings.Late-night food Offerings.Small plates -#> 1 TRUE TRUE TRUE -#> 2 TRUE TRUE TRUE -#> 3 TRUE TRUE TRUE -#> 4 NA NA NA -#> Offerings.Vegetarian options Offerings.Wine Offerings.Happy hour drinks -#> 1 TRUE TRUE NA -#> 2 TRUE TRUE TRUE -#> 3 TRUE TRUE TRUE -#> 4 NA TRUE NA -#> Offerings.Quick bite Offerings.Happy hour food Offerings.Healthy options -#> 1 NA NA NA -#> 2 TRUE NA NA -#> 3 TRUE TRUE TRUE -#> 4 TRUE NA NA -#> Dining options.Brunch Dining options.Lunch Dining options.Dinner -#> 1 TRUE TRUE TRUE -#> 2 TRUE TRUE TRUE -#> 3 TRUE TRUE TRUE -#> 4 TRUE TRUE TRUE -#> Dining options.Dessert Dining options.Seating Dining options.Breakfast -#> 1 TRUE TRUE NA -#> 2 NA TRUE TRUE -#> 3 TRUE TRUE TRUE -#> 4 TRUE TRUE TRUE -#> Dining options.Catering Dining options.Counter service Amenities.Bar onsite -#> 1 NA NA TRUE -#> 2 NA NA TRUE -#> 3 TRUE NA TRUE -#> 4 TRUE TRUE TRUE -#> Amenities.Restroom Amenities.Wi-Fi Atmosphere.Cozy Atmosphere.Romantic -#> 1 TRUE NA TRUE TRUE -#> 2 TRUE NA TRUE NA -#> 3 TRUE TRUE TRUE NA -#> 4 TRUE NA TRUE NA -#> Atmosphere.Trending Atmosphere.Trendy Atmosphere.Upscale Atmosphere.Casual -#> 1 TRUE TRUE TRUE NA -#> 2 NA TRUE NA TRUE -#> 3 TRUE TRUE NA TRUE -#> 4 NA TRUE NA TRUE -#> Crowd.Groups Crowd.Tourists Crowd.College students Crowd.Family-friendly -#> 1 TRUE TRUE NA NA -#> 2 TRUE TRUE TRUE NA -#> 3 TRUE TRUE NA TRUE -#> 4 NA NA NA TRUE -#> Crowd.LGBTQ+ friendly Crowd.Transgender safespace -#> 1 NA NA -#> 2 NA NA -#> 3 TRUE TRUE -#> 4 TRUE NA -#> Planning.Reservations required Planning.Dinner reservations recommended -#> 1 TRUE TRUE -#> 2 NA NA -#> 3 NA TRUE -#> 4 NA NA -#> Planning.Accepts reservations Planning.Usually a wait Payments.Credit cards -#> 1 TRUE TRUE TRUE -#> 2 FALSE NA TRUE -#> 3 TRUE NA TRUE -#> 4 TRUE NA TRUE -#> Payments.Debit cards Payments.NFC mobile payments Parking.Free street parking -#> 1 TRUE TRUE TRUE -#> 2 TRUE TRUE TRUE -#> 3 TRUE TRUE NA -#> 4 TRUE TRUE NA -#> Parking.Parking Parking.Paid street parking -#> 1 TRUE NA -#> 2 TRUE TRUE -#> 3 NA NA -#> 4 NA NA -#> From the business.Identifies as Latino-owned -#> 1 NA -#> 2 NA -#> 3 TRUE -#> 4 NA -#> From the business.Identifies as women-owned Children.Good for kids -#> 1 NA NA -#> 2 NA NA -#> 3 TRUE TRUE -#> 4 NA TRUE -#> Children.High chairs Children.Kids' menu Other.LGBTQ+ friendly -#> 1 NA NA NA -#> 2 NA NA NA -#> 3 TRUE TRUE TRUE -#> 4 TRUE NA TRUE -#> Other.Identifies as women-owned Other.Identifies as Latino-owned -#> 1 NA NA -#> 2 NA NA -#> 3 TRUE TRUE -#> 4 NA NA +#> Sunday Monday Tuesday Wednesday +#> 1 11AM-4AM 4PM-4AM 4PM-4AM 4PM-4AM +#> 2 4-9:30PM 5-9:30PM 5-9:30PM 5-9:30PM +#> 3 11AM-10PM 12-10PM 12-10PM 12-10PM +#> 4 8:30AM-3:30PM 8:30AM-3:30PM 8:30AM-3:30PM,5-9:30PM 8:30AM-3:30PM,5-9:30PM +#> Thursday Friday Saturday +#> 1 4PM-4AM 4PM-4AM 11AM-4AM +#> 2 5-9:30PM 4-9:30PM 4-9:30PM +#> 3 12-10PM 12-11PM 11AM-11PM +#> 4 8:30AM-3:30PM 8:30AM-3:30PM,5-9:30PM 8:30AM-3:30PM +multi_restaurants$about |> + tibble::as_tibble() +#> # A tibble: 4 × 15 +#> Service options$Outdoor…¹ $Delivery Highlights$Fast serv…² `Popular for`$Lunch +#> +#> 1 TRUE TRUE TRUE TRUE +#> 2 TRUE FALSE NA TRUE +#> 3 TRUE TRUE TRUE TRUE +#> 4 NA TRUE TRUE TRUE +#> # ℹ abbreviated names: ¹​`Service options`$`Outdoor seating`, +#> # ²​Highlights$`Fast service` +#> # ℹ 22 more variables: `Service options`$Takeout , $`Dine-in` , +#> # $`Curbside pickup` , $`No-contact delivery` , +#> # Highlights$`Great coffee` , $`Great dessert` , +#> # $`Live music` , `Popular for`$Dinner , $`Solo dining` , +#> # $Breakfast , Accessibility , Offerings , … + multi_restaurants$about$Highlights -#> Great coffee Great dessert Fast service Live music -#> 1 TRUE TRUE NA NA -#> 2 NA NA TRUE NA -#> 3 NA NA TRUE TRUE -#> 4 TRUE NA TRUE NA +#> Fast service Great coffee Great dessert Live music +#> 1 TRUE NA NA NA +#> 2 NA TRUE TRUE NA +#> 3 TRUE NA NA TRUE +#> 4 TRUE TRUE NA NA multi_restaurants$reviews_per_score #> 1 2 3 4 5 -#> 1 117 62 161 274 1228 -#> 2 67 35 57 292 807 +#> 1 67 35 57 292 807 +#> 2 117 62 161 274 1228 #> 3 30 32 67 171 857 #> 4 1 0 4 5 112 ``` @@ -351,99 +166,73 @@ library(outscrapr) query <- "restaurants, Brooklyn 11203" restaurant <- google_maps_search(query = query, limit = 1) -restaurant +restaurant |> + tibble::as_tibble() #> # A tibble: 1 × 58 #> query name name_for_emails place_id google_id full_address borough street #> -#> 1 restaura… Irie… Irie Bliss Res… ChIJJ8K… 0x89c25b… 3916 Church… Little… 3916 … +#> 1 restaura… LILL… Lilli Restaura… ChIJU4x… 0x89c25d… 1344 Utica … East F… 1344 … #> # ℹ 50 more variables: postal_code , area_service , #> # country_code , country , city , us_state , state , #> # plus_code , latitude , longitude , h3 , #> # time_zone , popular_times , site , phone , type , #> # logo , description , typical_time_spent , located_in , #> # located_google_id , category , subtypes , posts , -#> # reviews_tags , rating , reviews , photos_count , … +#> # reviews_tags , rating , reviews , photos_count , … reviews <- restaurant[["place_id"]] |> google_maps_reviews(reviews_limit = 2) -reviews +reviews |> + tibble::as_tibble() #> # A tibble: 1 × 64 #> query name name_for_emails place_id google_id full_address borough street #> -#> 1 ChIJJ8Kt… Irie… Irie Bliss Res… ChIJJ8K… 0x89c25b… 3916 Church… Little… 3916 … +#> 1 ChIJU4xg… LILL… Lilli Restaura… ChIJU4x… 0x89c25d… 1344 Utica … East F… 1344 … #> # ℹ 56 more variables: postal_code , area_service , #> # country_code , country , city , us_state , state , #> # plus_code , latitude , longitude , h3 , #> # time_zone , popular_times , site , phone , type , -#> # logo , description , typical_time_spent , located_in , +#> # logo , description , typical_time_spent , located_in , #> # located_google_id , category , subtypes , posts , -#> # reviews_tags , rating , reviews , reviews_data , … +#> # reviews_tags , rating , reviews , reviews_data , … + identical(reviews$place_id, restaurant$place_id) #> [1] TRUE -reviews$reviews -#> [1] 29 -reviews$reviews_data -#> [[1]] -#> google_id review_id -#> 1 0x89c25bb16aadc227:0x69caa35096ca1940 ChZDSUhNMG9nS0VJQ0FnSUNEMzlmQ2JBEAE -#> 2 0x89c25bb16aadc227:0x69caa35096ca1940 ChdDSUhNMG9nS0VJQ0FnSUNKaGVHdnpRRRAB -#> review_pagination_id -#> 1 CAESY0NBRVFBUnBFUTJwRlNVRlNTWEJEWjI5QlVEZGZURUZpYW5kZlgxOWZSV2hDYlU1WWQxYzRiRzlxUlc5a1RqbENRVUZCUVVGQlIyZHVPVEpVU1VOalZtOXZaM3BKV1VGRFNVRQ== -#> 2 CAESY0NBRVFBaHBFUTJwRlNVRlNTWEJEWjI5QlVEZGZURUZqV0dKZlgxOWZSV2hCVm5sSVVEa3RXSE5qYkVsMGNpMVhhMEZCUVVGQlIyZHVPVEpVVVVOa2RrSnJRbVZaV1VGRFNVRQ== -#> author_link -#> 1 https://www.google.com/maps/contrib/106670180153313807225?hl=en -#> 2 https://www.google.com/maps/contrib/116983403507383711315?hl=en -#> author_title author_id -#> 1 One Million 106670180153313807225 -#> 2 Deseret Segura 116983403507383711315 -#> author_image -#> 1 https://lh3.googleusercontent.com/a-/ALV-UjUEbIgeaSkHQtQjJFfSSjUhkRPIUScSWXP9dqMntGP2vo_tl5MD=s120-c-rp-mo-ba5-br100 -#> 2 https://lh3.googleusercontent.com/a/ACg8ocLMbdgUSnB_QqE2V_0ByEuFeb07CfnryBQ6yaVckPBPuatePA=s120-c-rp-mo-br100 -#> author_reviews_count author_ratings_count -#> 1 455 37 -#> 2 1 0 -#> review_text -#> 1 Omg 8$ . rice very very good\nI like the people who work here. Thx you . -#> 2 The food was absolutely amazing! Well seasoned with fast and loving customer service. Can’t wait to come back! It felt like a warm hug. -#> review_img_urls -#> 1 https://lh5.googleusercontent.com/p/AF1QipMgqZzoIJRtGhiSt6_UvCZIYO8oX1ztPEAu6a2t, https://lh5.googleusercontent.com/p/AF1QipPa1xWDdr6E5Slk4ULD-vaTacFx2Qtie01QbKm6, https://lh5.googleusercontent.com/p/AF1QipPygiFWjSjuUyEdRjz9JpOBBh3jOM7V_-9fpCzq -#> 2 https://lh5.googleusercontent.com/p/AF1QipO5G-PrtfDk2RbFBTBIVWmZUJmsXgv1qwRcH0Qk, https://lh5.googleusercontent.com/p/AF1QipMuzn4ekeijXa5u_8LRDTPtyeaBsRcRI5WScpJX -#> review_img_url -#> 1 https://lh5.googleusercontent.com/p/AF1QipMgqZzoIJRtGhiSt6_UvCZIYO8oX1ztPEAu6a2t=w150-h150-k-no-p -#> 2 https://lh5.googleusercontent.com/p/AF1QipO5G-PrtfDk2RbFBTBIVWmZUJmsXgv1qwRcH0Qk=w150-h150-k-no-p -#> review_questions.Food review_questions.Service review_questions.Atmosphere -#> 1 5 5 4 -#> 2 5 5 5 -#> review_questions.Meal type review_questions.Price per person -#> 1 -#> 2 Dinner $10–20 -#> review_photo_ids -#> 1 AF1QipMgqZzoIJRtGhiSt6_UvCZIYO8oX1ztPEAu6a2t, AF1QipPa1xWDdr6E5Slk4ULD-vaTacFx2Qtie01QbKm6, AF1QipPygiFWjSjuUyEdRjz9JpOBBh3jOM7V_-9fpCzq -#> 2 AF1QipO5G-PrtfDk2RbFBTBIVWmZUJmsXgv1qwRcH0Qk, AF1QipMuzn4ekeijXa5u_8LRDTPtyeaBsRcRI5WScpJX -#> owner_answer owner_answer_timestamp owner_answer_timestamp_datetime_utc -#> 1 NA NA NA -#> 2 NA NA NA -#> review_link -#> 1 https://www.google.com/maps/reviews/data=!4m8!14m7!1m6!2m5!1sChZDSUhNMG9nS0VJQ0FnSUNEMzlmQ2JBEAE!2m1!1s0x0:0x69caa35096ca1940!3m1!1s2@1:CIHM0ogKEICAgICD39fCbA%7CCgwIkpG3sAYQ4LPprwI%7C?hl=en -#> 2 https://www.google.com/maps/reviews/data=!4m8!14m7!1m6!2m5!1sChdDSUhNMG9nS0VJQ0FnSUNKaGVHdnpRRRAB!2m1!1s0x0:0x69caa35096ca1940!3m1!1s2@1:CIHM0ogKEICAgICJheGvzQE%7CCgwI28n-pAYQoPOJwQI%7C?hl=en -#> review_rating review_timestamp review_datetime_utc review_likes -#> 1 5 1712179346 04/03/2024 21:22:26 0 -#> 2 5 1688184027 07/01/2023 04:00:27 0 -#> reviews_id -#> 1 7623084885800524096 -#> 2 7623084885800524096 +reviews$reviews |> + tibble::as_tibble() +#> # A tibble: 1 × 1 +#> value +#> +#> 1 257 + +reviews$reviews_data[[1]] |> + tibble::as_tibble() +#> # A tibble: 2 × 23 +#> google_id review_id review_pagination_id author_link author_title author_id +#> +#> 1 0x89c25db3d… ChdDSUhN… CAESY0NBRVFBUnBFUTJ… https://ww… samuel lyght 11508292… +#> 2 0x89c25db3d… ChZDSUhN… CAESY0NBRVFBaHBFUTJ… https://ww… Najuma Burke 10067722… +#> # ℹ 17 more variables: author_image , author_reviews_count , +#> # author_ratings_count , review_text , review_img_urls , +#> # review_img_url , review_questions , review_photo_ids , +#> # owner_answer , owner_answer_timestamp , +#> # owner_answer_timestamp_datetime_utc , review_link , +#> # review_rating , review_timestamp , review_datetime_utc , +#> # review_likes , reviews_id + reviews$reviews_data[[1]]$review_text -#> [1] "Omg 8$ . rice very very good\nI like the people who work here. Thx you ." -#> [2] "The food was absolutely amazing! Well seasoned with fast and loving customer service. Can’t wait to come back! It felt like a warm hug." +#> [1] "The appetizers were delicious, the ambiance was pleasant, and the drinks were excellent. However, it was a little on the expensive side. The new waitress was outstanding. Despite her slow service and lack of menu knowledge, I ordered the snapper, which was well-seasoned but not particularly tasty. The fried rice was slightly salty." +#> [2] "From the time we entered things were pleasant. We were met with a smile and greetings. The staff were accommodating and work well together. The drinks made by Simone were 10/10. They were smooth and the flavors well balanced. Our server Mimi was amazing and attentive and and overall sweetheart. I’ll be requesting her again. Big up to the chef because the food was finger licking good. Chef Omar knows what he is doing with his flavors… 10/10. We had no complaints we. We will be on repeat." reviews$reviews_data[[1]]$review_questions -#> Food Service Atmosphere Meal type Price per person -#> 1 5 5 4 -#> 2 5 5 5 Dinner $10–20 +#> Service Meal type Price per person Food Atmosphere Recommended dishes +#> 1 3 Brunch $50–100 4 4 NA +#> 2 5 Brunch $50–100 5 5 NA reviews$reviews_data[[1]]$owner_answer -#> [1] NA NA +#> [1] "Hi Samuel \n\nThank you so much for the great feedback! Guest experience is very important to us and we strive to make this restaurant a place that everyone can enjoy! We are happy you had a good time and we hope to see you again. \n\n" +#> [2] NA ``` ## Code of Conduct