View source: R/dataset_sentence_polarity.R
dataset_sentence_polarity | R Documentation |
5331 positive and 5331 negative processed sentences / snippets. Introduced in Pang/Lee ACL 2005. Released July 2005.
dataset_sentence_polarity(
dir = NULL,
delete = FALSE,
return_path = FALSE,
clean = FALSE,
manual_download = FALSE
)
dir |
Character, path to directory where data will be stored. If
|
delete |
Logical, set |
return_path |
Logical, set |
clean |
Logical, set |
manual_download |
Logical, set |
Citation info:
This data was first used in Bo Pang and Lillian Lee, “Seeing stars: Exploiting class relationships for sentiment categorization with respect to rating scales.”, Proceedings of the ACL, 2005.
InProceedings{pang05,
author = {Bo Pang and Lillian Lee},
title = {Seeing stars: Exploiting class relationships for sentiment
categorization with respect to rating scales},
booktitle = {Proceedings of the ACL},
year = 2005
}
A tibble with 10,662 rows and 2 variables:
Sentences or snippets
Indicator for sentiment, "neg" for negative and "pos" for positive
https://www.cs.cornell.edu/people/pabo/movie-review-data/
## Not run:
dataset_sentence_polarity()
# Custom directory
dataset_sentence_polarity(dir = "data/")
# Deleting dataset
dataset_sentence_polarity(delete = TRUE)
# Returning filepath of data
dataset_sentence_polarity(return_path = TRUE)
## End(Not run)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.