powered by
data(NYTimes)
data.frame
1. Article_ID - A unique identifier for the headline from The New York Times.
Article_ID
2. Date - The date the headline appeared in The New York Times.
Date
3. Title - The headline as it appeared in The New York Times.
Title
4. Subject - A manually classified subject of the headline.
Subject
5. Topic.Code - A manually labeled topic code corresponding to the subject.
Topic.Code
# READ THE CSV data <- read.csv(system.file("data/NYTimes.csv.gz",package="RTextTools")) # ALTERNATIVELY, USE THE data() FUNCTION data(NYTimes)
Run the code above in your browser using DataLab