-
Notifications
You must be signed in to change notification settings - Fork 2
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 #46 from dieghernan/main
Update DOI
- Loading branch information
Showing
7 changed files
with
28 additions
and
24 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 |
---|---|---|
|
@@ -9,7 +9,7 @@ type: software | |
license: GPL-3.0-or-later | ||
title: 'tidyBdE: Download Data from Bank of Spain' | ||
version: 0.3.6 | ||
doi: 10.5281/zenodo.4673496 | ||
doi: 10.32614/CRAN.package.tidyBdE | ||
abstract: Tools to download data series from 'Banco de España' ('BdE') on 'tibble' | ||
format. 'Banco de España' is the national central bank and, within the framework | ||
of the Single Supervisory Mechanism ('SSM'), the supervisor of the Spanish banking | ||
|
@@ -30,7 +30,7 @@ preferred-citation: | |
email: [email protected] | ||
orcid: https://orcid.org/0000-0001-8457-4658 | ||
affiliation: rOpenSpain | ||
doi: 10.5281/zenodo.4673496 | ||
doi: 10.32614/CRAN.package.tidyBdE | ||
year: '2024' | ||
version: 0.3.6 | ||
url: https://ropenspain.github.io/tidyBdE/ | ||
|
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
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 |
---|---|---|
@@ -1,17 +1,18 @@ | ||
year <- format(Sys.time(), "%Y") | ||
abs <- trimws(gsub("\\s+", " ", meta$Description)) | ||
abs <- gsub("'", "", abs) | ||
doi <- "10.5281/zenodo.4673496" | ||
pkg <- meta$Package | ||
doi <- paste0("10.32614/CRAN.package.", pkg) | ||
|
||
bibentry( | ||
"Manual", | ||
header = paste0("To cite '", meta$Package, "' in publications use:"), | ||
title = paste("{tidyBdE}:", gsub("'", "", meta$Title)), | ||
header = paste0("To cite '", pkg, "' in publications use:"), | ||
title = paste0("{", pkg, "}: ", gsub("'", "", meta$Title)), | ||
doi = doi, | ||
author = person("Diego","H. Herrero"), | ||
author = c(person("Diego", "H. Herrero")), | ||
year = year, | ||
version = meta$Version, | ||
url = unlist(strsplit(meta$URL, ","))[1], | ||
abstract = abs, | ||
key = "R-tidyBdE" | ||
key = paste0("R-", pkg) | ||
) |
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