Sentiment Analysis in R
Ted Kwartler
Data Dude
dist <- rnorm(100,
mean = 0,
sd = 1)
hist(dist, breaks = 1)
hist(dist, breaks = 10)
hist(dist, breaks = 100)
dist <- rnorm(100,
mean = 0,
sd = 1)
hist(dist, breaks = 10)
d_curve <- density(dist)
plot(d_curve)
Sentiment Analysis in R