wine_reviews {weird} | R Documentation |
A data set containing data on wines from 44 countries, taken from Wine Enthusiast Magazine during the week of 15 June 2017.
wine_reviews
A data frame with 110,203 rows and 8 columns:
Country of origin
State or province of origin
Region of origin
Name of vineyard that made the wine
Variety of grape
Points allocated by WineEnthusiast reviewer on a scale of 0-100
Price of a bottle of wine in $US
Year of wine extracted from title
Data frame
wine_reviews |>
ggplot(aes(x = points, y = price)) +
geom_jitter(height = 0, width = 0.2, alpha = 0.1) +
scale_y_log10()