tidyfeed | R Documentation |
tidyfeed()
downloads and parses rss feeds. The function
produces either a tidy data frame or a named list, easy to use for further
manipulation and analysis.
tidyfeed( feed, config = list(), clean_tags = TRUE, list = FALSE, parse_dates = TRUE )
feed |
|
config |
Arguments passed off to |
clean_tags |
|
list |
|
parse_dates |
|
tidyfeed()
attempts to parse columns that should contain
dates. This can fail, as can be seen
here. If you need
lower-level control over the parsing of dates, it's better to leave
parse_dates
equal to FALSE
and then parse these yourself.
Robert Myles McDonnell, robertmylesmcdonnell@gmail.com
https://en.wikipedia.org/wiki/RSS
GET()
## Not run: # Atom feed: tidyfeed("http://journal.r-project.org/rss.atom") # rss/xml: tidyfeed("http://fivethirtyeight.com/all/feed") # jsonfeed: tidyfeed("https://daringfireball.net/feeds/json") ## End(Not run)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.