November 2017
Beginner to intermediate
366 pages
7h 59m
English
Our RShiny application will be able to do the following:
Let us first load all the necessary libraries and authenticate into our Twitter account:
library(shiny)library(twitteR, quietly = TRUE)library(stringr)library(sentimentr, quietly = TRUE)library(dplyr, quietly = TRUE)consumer.key <- ""consumer.secret <- ""access.token <- ""token.secret <- ""setup_twitter_oauth(consumer.key, consumer.secret, access.token, token.secret)
Fill in your consumer.keys, secret, access.token, and token.secret.
Let us build the user interface part:
ui <- fluidPage( navbarPage("TweetSenti", tabPanel("Search Tweets" , textInput("search","search",value="#bladerunner") ...Read now
Unlock full access