sh <- suppressPackageStartupMessages
sh(library(tidyverse))
sh(library(tidytext))
data(stop_words)
wine <- readRDS(gzcon(url("https://cd-public.github.io/D505/dat/variety.rds"))) %>% rowid_to_column("id")
glimpse(wine)
Rows: 3,657
Columns: 5
$ id <int> 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17,…
$ variety <chr> "Pinot_Gris", "Pinot_Noir", "Pinot_Noir", "Pinot_Noir", "P…
$ price <dbl> 14, 65, 20, 50, 22, 25, 38, 28, 45, 22, 40, 50, 52, 48, 50…
$ points <dbl> 87, 87, 87, 86, 86, 86, 91, 85, 85, 85, 89, 89, 92, 95, 92…
$ description <chr> "Tart and snappy, the flavors of lime flesh and rind domin…