print.SentimentDictionaryWordlist {SentimentAnalysis} | R Documentation |
Output content of sentiment dictionary
Description
Prints entries of sentiment dictionary to the screen
Usage
## S3 method for class 'SentimentDictionaryWordlist'
print(x, ...)
## S3 method for class 'SentimentDictionaryBinary'
print(x, ...)
## S3 method for class 'SentimentDictionaryWeighted'
print(x, ...)
Arguments
x |
Sentiment dictionary of type |
... |
Additional parameters passed to specific sub-routines |
See Also
summary
for showing a brief summary
Examples
print(SentimentDictionary(c("uncertain", "possible", "likely")))
print(SentimentDictionary(c("increase", "rise", "more"),
c("fall", "drop")))
print(SentimentDictionary(c("increase", "decrease", "exit"),
c(+1, -1, -10),
rep(NA, 3)))
[Package SentimentAnalysis version 1.3-5 Index]