I\'m trying to pull tweets using the twitteR package, but I\'m having an issue getting them through the searchTwitter function when I specify a geocode the way they have it in t
I believe you need to remove the spaces in the geocode
parameter:
statuses = searchTwitter(keyword, n=100, lang="en",sinceID = NULL, geocode="39.312957,-76.618119,10km",retryOnRateLimit=10)
FWIW You can use the Twitter desktop client "Develop" console to test out URLs before committing them into scripts.