wine | R Documentation |
A data frame containing wine reviews for wines made in the United States, France, and Italy.
wine
A data frame with 5,000 rows and 13 variables The variables are as follows:
a unique identifier
country that the wine is from
description of the wine, written by the taster
vineyard within the winery where the wine is from
number of points the wine was rated on a scale of 1 - 100
cost of the bottle of wine($)
the province or state that the wine is from
the wine growing area within the province or state
name of the reviewer
twitter handle of the reviewer
title of the wine review; contains the vintage of the wine
type of grape used to make the wine
winery where the wine was produced
This is a good dataset for both quantitative and text mining.
The full data set can be found on Kaggle https://www.kaggle.com/zynicide/wine-reviews
summary(wine) table(wine$points) hist(wine$points) plot(wine$points, wine$price, main = "Wine Prices by Score", xlab = "Score (1-100)", ylab = "Price ($)") wine[1, ]
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.