Raquel D.
2017-Apr-18 18:38 UTC
[R] Twitter Analytics Using streamR - subscript out of bounds
can someone help me? How fix this error? My code: library("ROAuth") library("streamR") library("rjson") library("twitteR") apiKey <- "xxx" apiSecret <- "xxx" accessToken <- "xxx" accessSecret <- "xxx" requestURL <- "https://api.twitter.com/oauth/request_token" accessURL <- "https://api.twitter.com/oauth/access_token" authURL <- "https://api.twitter.com/oauth/authorize" my_oauth <- OAuthFactory$new(consumerKey = apiKey, consumerSecret = apiSecret, requestURL = requestURL, accessURL = accessURL, authURL = authURL) my_oauth$handshake(cainfo = system.file("CurlSSL", "cacert.pem", package = "RCurl")) save(my_oauth, file = "my_oauth.Rdata") load("my_oauth.Rdata") filterStream("tweets.json", track = "kinoplex", timeout = 180, oauth = my_oauth) tweets.df <- parseTweets("tweets.json", simplify = TRUE) ERROR: tweets.df <- parseTweets("tweets.json", simplify = TRUE) Error in results.list[[1]] : subscript out of bounds [[alternative HTML version deleted]]
Jeff Newmiller
2017-Apr-18 19:23 UTC
[R] Twitter Analytics Using streamR - subscript out of bounds
I am no expert, but I think any attempt to save your OAuth data is doomed to fail. Solution is don't do it. -- Sent from my phone. Please excuse my brevity. On April 18, 2017 11:38:10 AM PDT, "Raquel D." <raqueldourado at hotmail.com> wrote:>can someone help me? How fix this error? > >My code: > >library("ROAuth") >library("streamR") >library("rjson") >library("twitteR") > >apiKey <- "xxx" >apiSecret <- "xxx" >accessToken <- "xxx" >accessSecret <- "xxx" >requestURL <- "https://api.twitter.com/oauth/request_token" >accessURL <- "https://api.twitter.com/oauth/access_token" >authURL <- "https://api.twitter.com/oauth/authorize" > >my_oauth <- OAuthFactory$new(consumerKey = apiKey, consumerSecret >apiSecret, > requestURL = requestURL, accessURL = accessURL, authURL = authURL) > > >my_oauth$handshake(cainfo = system.file("CurlSSL", "cacert.pem", >package = "RCurl")) > > >save(my_oauth, file = "my_oauth.Rdata") > >load("my_oauth.Rdata") >filterStream("tweets.json", track = "kinoplex", timeout = 180, > oauth = my_oauth) > > >tweets.df <- parseTweets("tweets.json", simplify = TRUE) > >ERROR: tweets.df <- parseTweets("tweets.json", simplify = TRUE) Error >in results.list[[1]] : subscript out of bounds > > > [[alternative HTML version deleted]] > >______________________________________________ >R-help at r-project.org mailing list -- To UNSUBSCRIBE and more, see >https://stat.ethz.ch/mailman/listinfo/r-help >PLEASE do read the posting guide >http://www.R-project.org/posting-guide.html >and provide commented, minimal, self-contained, reproducible code.
Raquel D.
2017-Apr-18 20:22 UTC
[R] Twitter Analytics Using streamR - subscript out of bounds
I have tried this. Same error. Att; ________________________________ De: Jeff Newmiller <jdnewmil at dcn.davis.ca.us> Enviado: ter?a-feira, 18 de abril de 2017 19:23 Para: r-help at r-project.org; Raquel D.; r-help at r-project.org Assunto: Re: [R] Twitter Analytics Using streamR - subscript out of bounds I am no expert, but I think any attempt to save your OAuth data is doomed to fail. Solution is don't do it. -- Sent from my phone. Please excuse my brevity. On April 18, 2017 11:38:10 AM PDT, "Raquel D." <raqueldourado at hotmail.com> wrote:>can someone help me? How fix this error? > >My code: > >library("ROAuth") >library("streamR") >library("rjson") >library("twitteR") > >apiKey <- "xxx" >apiSecret <- "xxx" >accessToken <- "xxx" >accessSecret <- "xxx" >requestURL <- "https://api.twitter.com/oauth/request_token" >accessURL <- "https://api.twitter.com/oauth/access_token" >authURL <- "https://api.twitter.com/oauth/authorize" > >my_oauth <- OAuthFactory$new(consumerKey = apiKey, consumerSecret >apiSecret, > requestURL = requestURL, accessURL = accessURL, authURL = authURL) > > >my_oauth$handshake(cainfo = system.file("CurlSSL", "cacert.pem", >package = "RCurl")) > > >save(my_oauth, file = "my_oauth.Rdata") > >load("my_oauth.Rdata") >filterStream("tweets.json", track = "kinoplex", timeout = 180, > oauth = my_oauth) > > >tweets.df <- parseTweets("tweets.json", simplify = TRUE) > >ERROR: tweets.df <- parseTweets("tweets.json", simplify = TRUE) Error >in results.list[[1]] : subscript out of bounds > > > [[alternative HTML version deleted]] > >______________________________________________ >R-help at r-project.org mailing list -- To UNSUBSCRIBE and more, see >https://stat.ethz.ch/mailman/listinfo/r-help >PLEASE do read the posting guide >http://www.R-project.org/posting-guide.html >and provide commented, minimal, self-contained, reproducible code.[[alternative HTML version deleted]]