wine: Wine reviews

Description Usage Format Note Source Examples

Description

A data frame containing wine reviews for wines made in the United States, France, and Italy.

Usage

1

Format

A data frame with 5,000 rows and 13 variables The variables are as follows:

id

a unique identifier

country

country that the wine is from

description

description of the wine, written by the taster

designation

vineyard within the winery where the wine is from

points

number of points the wine was rated on a scale of 1 - 100

price

cost of the bottle of wine($)

province

the province or state that the wine is from

region

the wine growing area within the province or state

taster_name

name of the reviewer

taster_twitter_handle

twitter handle of the reviewer

title

title of the wine review; contains the vintage of the wine

variety

type of grape used to make the wine

winery

winery where the wine was produced

Note

This is a good dataset for both quantitative and text mining.

Source

The full data set can be found on Kaggle https://www.kaggle.com/zynicide/wine-reviews

Examples

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
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, ]

Rkabacoff/qacr documentation built on March 20, 2021, 3:03 p.m.