Visualize dataset and get some insight of data.

VisualizeData(dataset, termcount)

Arguments

dataset

dataset.

termcount

termcount:used for filtering the highest terms repeated in reviews usually > 10

Value

some diagram and insight of data

A ggplot

Examples

# NOT RUN {
library(SentiAnalyzer)
direction <- system.file(package = "SentiAnalyzer", "extdata/Restaurant_Reviews.tsv")
original_dataset <- read.delim(direction,quote='',stringsAsFactors = FALSE)
VisualizeData(dataset=original_dataset,termcount=15)
# }