February 2018
Beginner to intermediate
258 pages
5h 47m
English
The data is a subset of the Stanford Large Movie Review dataset, originally published in:
Andrew L. Maas, Raymond E. Daly, Peter T. Pham, Dan Huang, Andrew Y. Ng, and Christopher Potts. (2011). Learning Word Vectors for Sentiment Analysis. The 49th Annual Meeting of the Association for Computational Linguistics (ACL 2011).
This data is available to download at http://ai.stanford.edu/~amaas/data/sentiment/, provided proper credit is given to the original paper. This is the raw data, but you can find a preprocessed version in Kaggle, https://www.kaggle.com/c/word2vec-nlp-tutorial/data.
Let's begin with loading the data:
df <- read.csv("./data/labeledTrainData.tsv", encoding = "utf-8", quote = "", sep="\t", stringsAsFactors ...Read now
Unlock full access