I can use quantmod to get historical data and close-to-realtime quotes for stocks. I can also use quantmod to get financials data from Google. Are there any existing R packages that would let me grab Google's news feed for a given stock?

If not, is there a package for reading and parsing RSS feeds in R?

link|improve this question

feedback

3 Answers

Sure, RSS is after all XML, so use the XML package.

link|improve this answer
And look here for some good nuggets of info on using said package: stackoverflow.com/questions/1395528/… – Chase Apr 21 '11 at 20:29
feedback

There's also a (not yet on CRAN) package that does some of the nitty gritty of parsing RSS feeds (and Atom) for you - nothing fancy, just some of the basic cleaning, normalization between the RSS and Atom spec, etc.

You can grab it from https://github.com/noahhl/r-does-rss

(full disclosure, I wrote it)

link|improve this answer
feedback
up vote 0 down vote accepted

I wrote my own function to do this, using XML and xts. I posted it as a question on SO, because I think it could be improved.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.