diff --git a/DESCRIPTION b/DESCRIPTION index 645a076..7677bc4 100644 --- a/DESCRIPTION +++ b/DESCRIPTION @@ -24,5 +24,5 @@ Imports: dplyr (>= 0.5.0), Suggests: testthat, knitr, rmarkdown -RoxygenNote: 6.0.0 +RoxygenNote: 6.0.1 VignetteBuilder: knitr diff --git a/NEWS.md b/NEWS.md index 66c8370..2174a5d 100644 --- a/NEWS.md +++ b/NEWS.md @@ -1,9 +1,9 @@ -tidyRSS v1.0.0 (Release date: 24/2/2017) +tidyRSS v1.0.1 (Release date: 28/2/2017) ============== Changes: -* Fixed certain feeds not paring (Issue #1) +* Fixed certain feeds not parsing (Issue #1) tidyRSS v1.0.0 (Release date: 24/2/2017) diff --git a/README.Rmd b/README.Rmd index b73570a..443b054 100644 --- a/README.Rmd +++ b/README.Rmd @@ -13,13 +13,13 @@ knitr::opts_chunk$set( ``` [![Travis-CI Build Status](https://travis-ci.org/RobertMyles/tidyRSS.svg?branch=master)](https://travis-ci.org/RobertMyles/tidyRSS) -[![CRAN_Status_Badge](https://www.r-pkg.org/badges/version/tidyRSS)](http://cran.r-project.org/package=tidyRSS) +[![CRAN_Status_Badge](https://www.r-pkg.org/badges/version/tidyRSS)](https://cran.r-project.org/package=tidyRSS) tidyRSS is a package for extracting data from [RSS feeds](https://en.wikipedia.org/wiki/RSS). It is easy to use as it only has one function, `tidyfeed()`, which takes one argument, the url of the feed. Running this function will return a tidy data frame of the information contained in the feed. If the url is not a feed, it will return an error message. -Included in the package is a simple dataset, a list of feed urls, which you can use to experiment with (they were taken from [here](https://raw.githubusercontent.com/DataWookie/feedeR/master/tests/testthat/test-feeds.txt)). Most of these work fine with `tidyfeed()`. One or two return an error message asking if the user has entered the url correctly (mainly because the feed has moved url or something like that), and one (http://newsrss.bbc.co.uk/rss/newsonline_world_edition/front_page/rss.xml) returns NULL for most fields, although it is a valid field (and so throws an actual error). So bug reports (and suggestions for fixing them) are very welcome. +Included in the package is a simple dataset, a list of feed urls, which you can use to experiment with (they were taken from [here](https://raw.githubusercontent.com/DataWookie/feedeR/master/tests/testthat/test-feeds.txt)). One (http://newsrss.bbc.co.uk/rss/newsonline_world_edition/front_page/rss.xml) returns NULL for most fields, although it is a valid field (and so throws an actual error). So bug reports (and suggestions for fixing them) are very welcome. ## Installation @@ -61,7 +61,7 @@ More information is contained in the vignette: `vignette("tidyrss", package = "t ## Issues -RSS feeds can be finicky things, if you find one that doesn't work with `tidyfeed()`, [let me know](https://github.com/RobertMyles/tidyrss/issues). Please include the url of the feed that you are trying. Pull requests and general feedback are welcome. +RSS feeds can be finicky things, if you find one that doesn't work with `tidyfeed()`, [let me know](https://github.com/robertmyles/tidyrss/issues). Please include the url of the feed that you are trying. Pull requests and general feedback are welcome. ## Related diff --git a/README.md b/README.md index 194fee9..88cdf36 100644 --- a/README.md +++ b/README.md @@ -1,12 +1,12 @@ -[![Travis-CI Build Status](https://travis-ci.org/RobertMyles/tidyRSS.svg?branch=master)](https://travis-ci.org/RobertMyles/tidyRSS) [![CRAN\_Status\_Badge](https://www.r-pkg.org/badges/version/tidyRSS)](http://cran.r-project.org/package=tidyRSS) +[![Travis-CI Build Status](https://travis-ci.org/RobertMyles/tidyRSS.svg?branch=master)](https://travis-ci.org/RobertMyles/tidyRSS) [![CRAN\_Status\_Badge](https://www.r-pkg.org/badges/version/tidyRSS)](https://cran.r-project.org/package=tidyRSS) tidyRSS is a package for extracting data from [RSS feeds](https://en.wikipedia.org/wiki/RSS). It is easy to use as it only has one function, `tidyfeed()`, which takes one argument, the url of the feed. Running this function will return a tidy data frame of the information contained in the feed. If the url is not a feed, it will return an error message. -Included in the package is a simple dataset, a list of feed urls, which you can use to experiment with (they were taken from [here](https://raw.githubusercontent.com/DataWookie/feedeR/master/tests/testthat/test-feeds.txt)). Most of these work fine with `tidyfeed()`. One or two return an error message asking if the user has entered the url correctly (mainly because the feed has moved url or something like that), and one () returns NULL for most fields, although it is a valid field (and so throws an actual error). So bug reports (and suggestions for fixing them) are very welcome. +Included in the package is a simple dataset, a list of feed urls, which you can use to experiment with (they were taken from [here](https://raw.githubusercontent.com/DataWookie/feedeR/master/tests/testthat/test-feeds.txt)). One () returns NULL for most fields, although it is a valid field (and so throws an actual error). So bug reports (and suggestions for fixing them) are very welcome. Installation ------------ @@ -49,7 +49,7 @@ More information is contained in the vignette: `vignette("tidyrss", package = "t Issues ------ -RSS feeds can be finicky things, if you find one that doesn't work with `tidyfeed()`, [let me know](https://github.com/RobertMyles/tidyrss/issues). Please include the url of the feed that you are trying. Pull requests and general feedback are welcome. +RSS feeds can be finicky things, if you find one that doesn't work with `tidyfeed()`, [let me know](https://github.com/robertmyles/tidyrss/issues). Please include the url of the feed that you are trying. Pull requests and general feedback are welcome. Related ------- diff --git a/vignettes/tidyrss.Rmd b/vignettes/tidyrss.Rmd index 3746cd8..ce1c29e 100644 --- a/vignettes/tidyrss.Rmd +++ b/vignettes/tidyrss.Rmd @@ -46,7 +46,6 @@ Since the data are already in a tidy format, it's straightforward to use it with library(tidytext) library(dplyr) library(ggplot2) -library(lubridate) data("stop_words")