-
Notifications
You must be signed in to change notification settings - Fork 46
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #271 from rOpenGov/search_eurostat
Enhance search_eurostat(), TOC handling, documentation
- Loading branch information
Showing
36 changed files
with
2,334 additions
and
548 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -27,7 +27,6 @@ docs | |
^\.Rproj\.user$ | ||
^packrat/ | ||
^\.Rprofile$ | ||
^NEWS.md$ | ||
^cran-comments\.md$ | ||
^data-raw$ | ||
^revdep$ | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -50,7 +50,8 @@ Imports: | |
stringi, | ||
stringr, | ||
tibble, | ||
tidyr (>= 1.0.0) | ||
tidyr (>= 1.0.0), | ||
xml2 | ||
Suggests: | ||
giscoR, | ||
knitr, | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
#' @title Defunct functions in eurostat | ||
#' | ||
#' @description | ||
#' This list of defunct functions is maintained to document changes to eurostat functions in a | ||
#' transparent manner. | ||
#' | ||
#' @param ... Generic representation of old arguments | ||
#' | ||
#' @name eurostat-defunct | ||
#' @aliases eurostat-defunct | ||
#' | ||
#' @details | ||
#' The following functions are defunct: | ||
#' | ||
#' \itemize{ | ||
#' \item \code{\link{grepEurostatTOC}}: Use \code{search_eurostat} instead | ||
#' } | ||
#' | ||
#' | ||
NULL | ||
|
||
#' @rdname eurostat-defunct | ||
#' @export | ||
grepEurostatTOC <- function(...) { | ||
.Defunct(new = "search_eurostat") | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
#' @name eurostat-deprecated | ||
#' @aliases eurostat-deprecated | ||
#' @title Deprecated functions in package eurostat | ||
#' | ||
#' @description | ||
#' These functions are provided for compatibility with older versions of | ||
#' eurostat package only, and will be defunct at the next release. | ||
#' | ||
#' @details | ||
#' The following functions are deprecated and will be made defunct; use the | ||
#' replacement indicated below: | ||
#' | ||
#' \itemize{ | ||
#' | ||
#' \item{label_eurostat_vars: \code{\link{label_eurostat_vars2}}} | ||
#' | ||
#' } | ||
#' | ||
NULL |
Oops, something went wrong.