Learn R Programming

classmap (version 1.2.3)

data_bookReviews: Amazon book reviews data

Description

This is a subset of the data used in the paper, which was assembled by Prettenhofer and Stein (2010). It contains 1000 reviews of books on Amazon, of which 500 were selected from the original training data and 500 from the test data.

The full dataset has been used for a variety of things, including classification using svm. The subset was chosen small enough to keep the computation time low, while still containing the examples in the paper.

Usage

data("data_bookReviews")

Arguments

Format

A data frame with 1000 observations on the following 2 variables.

review

the review in text format (character)

sentiment

factor indicating the sentiment of the review: negative (1) or positive (2)

Examples

Run this code
data(data_bookReviews)
# Example review:
data_bookReviews[5, 1]

# The data are used in:
if (FALSE) {
vignette("Support_vector_machine_examples")
}

Run the code above in your browser using DataLab