Difference between revisions of "R: twitter persiapan"
Jump to navigation
Jump to search
Onnowpurbo (talk | contribs) |
Onnowpurbo (talk | contribs) |
||
Line 2: | Line 2: | ||
install.packages(c("devtools", "rjson", "bit64", "httr")) | install.packages(c("devtools", "rjson", "bit64", "httr")) | ||
− | |||
#RESTART R session! | #RESTART R session! | ||
− | |||
library(devtools) | library(devtools) | ||
install_github("geoffjentry/twitteR", username="geoffjentry") | install_github("geoffjentry/twitteR", username="geoffjentry") | ||
library(twitteR) | library(twitteR) | ||
− | + | # https://apps.twitter.com/ | |
api_key <- "YOUR API KEY" | api_key <- "YOUR API KEY" | ||
api_secret <- "YOUR API SECRET" | api_secret <- "YOUR API SECRET" |
Revision as of 10:43, 1 November 2018
install.packages(c("devtools", "rjson", "bit64", "httr")) #RESTART R session! library(devtools) install_github("geoffjentry/twitteR", username="geoffjentry") library(twitteR)
# https://apps.twitter.com/ api_key <- "YOUR API KEY" api_secret <- "YOUR API SECRET" access_token <- "YOUR ACCESS TOKEN" access_token_secret <- "YOUR ACCESS TOKEN SECRET" setup_twitter_oauth(api_key,api_secret)
searchTwitter("android")