You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
together with the CRAN team we are currently discussing strategies for better checking of CITATION files. In a CRAN screening, the extremevalues package stood out due to its frequent use of citFooter() in its CITATION file.
I think it would be better to set up a CITATION with two bibentry() objects as shown below. Or is there a particular reason why the second citation is in the footer only?
I'm happy to turn this into a PR if you would prefer that.
Thanks for your consideration & best wishes,
Achim
if(!exists("meta") || is.null(meta)) meta <- packageDescription("extremevalues")
year <- sub("-.*", "", meta$Date)
note <- sprintf("R package version %s", meta$Version)
bibentry(bibtype = "Manual",
title = "extremevalues: Univariate Outlier Detection",
author = person(given = "Mark", family = "van der Loo"),
year = year,
note = note,
url = "https://CRAN.R-project.org/package=extremevalues",
header = "To cite extremevalues in publications use:"
)
bibentry(bibtype = "TechReport",
title = "Distribution Based Outlier Detection for Univariate Data",
author = person(given = "Mark", family = "van der Loo"),
institution = "Statistics Netherlands",
number = "10003",
address = "The Hague",
url = "https://www.cbs.nl/",
year = "2010",
header = "To cite the underlying theory, please use:"
)
The text was updated successfully, but these errors were encountered:
Mark,
together with the CRAN team we are currently discussing strategies for better checking of
CITATION
files. In a CRAN screening, theextremevalues
package stood out due to its frequent use ofcitFooter()
in its CITATION file.I think it would be better to set up a
CITATION
with twobibentry()
objects as shown below. Or is there a particular reason why the second citation is in the footer only?I'm happy to turn this into a PR if you would prefer that.
Thanks for your consideration & best wishes,
Achim
The text was updated successfully, but these errors were encountered: