46075/r-programming-error-twitter-oauthfactory-object
I am trying to run a code that will help me download twitter tweets for analysis. Here is my code
my.key <- "xxx" my.secret <- "xxx" cred <- OAuthFactory$new(consumerKey=my.key, consumerSecret=my.secret, requestURL = 'https://api.twitter.com/oauth/request_token', accessURL = 'https://api.twitter.com/oauth/access_token', authURL = 'https://api.twitter.com/oauth/authorize') Error: object 'OAuthFactory' not found
How do I get rid of this error?
Make sure you have installed the required libraries:
install.packages(c('ROAuth','RCurl')) require('ROAuth') require('RCurl')
You need to install the following packages: install.packages(c('RO ...READ MORE
Yes, Just like @Maverik said, It happens ...READ MORE
This is a very common issue that ...READ MORE
This is caused by using an object-oriented ...READ MORE
Alright, you can either use gsub to match the ...READ MORE
You're using a factor: fert <- factor(c(50,20,10,10,20,50)) levels(fert) #[1] ...READ MORE
The basket.sorted() has less than 5 rules. Refer ...READ MORE
The below code will help: gregexpr("D", x) # [[1]] # ...READ MORE
Have you installed 'ROAuth' and 'RCurl' packages? ...READ MORE
Format your code this way: myfunction <- function() ...READ MORE
OR
At least 1 upper-case and 1 lower-case letter
Minimum 8 characters and Maximum 50 characters
Already have an account? Sign in.