A selection of sushi resturants in the St. Louis, Missouri region.
These data are in long form, with multiple visits in a single year to some
of the resturants. They also contain a degree of messiness, with a mix of
upper and lower case tying, some street types abbreviated (i.e. "St") and
others entered in full (i.e. "Street"), and an example of two ways in which
unit numbers may appear. Unlike sushi1
, these data do not contain
city, state, or postal code data.
data(sushi2)
A tibble with 19 rows and 3 variables:
resturant name
street address
visit date
str(sushi2)#> Classes ‘spec_tbl_df’, ‘tbl_df’, ‘tbl’ and 'data.frame': 18 obs. of 3 variables: #> $ name : chr "BaiKu Sushi Lounge" "Cafe Mochi" "Drunken Fish - Ballpark Village" "Drunken Fish - Ballpark Village" ... #> $ address: chr "3407 Olive St" "3221 S Grand Boulevard" "601 Clark Ave #104" "601 Clark Ave Suite 104" ... #> $ visit : chr "3/20/18" "10/10/18" "4/28/18" "5/10/18" ... #> - attr(*, "spec")= #> .. cols( #> .. name = col_character(), #> .. address = col_character(), #> .. visit = col_character() #> .. )head(sushi2)#> # A tibble: 6 x 3 #> name address visit #> <chr> <chr> <chr> #> 1 BaiKu Sushi Lounge 3407 Olive St 3/20/18 #> 2 Cafe Mochi 3221 S Grand Boulevard 10/10/18 #> 3 Drunken Fish - Ballpark Village 601 Clark Ave #104 4/28/18 #> 4 Drunken Fish - Ballpark Village 601 Clark Ave Suite 104 5/10/18 #> 5 Drunken Fish - Ballpark Village 601 Clark Ave Suite 104 8/7/18 #> 6 Drunken Fish - Central West End 1 Maryland Plaza 12/2/18