/usr/lib/R/site-library/tseries/CITATION is in r-cran-tseries 0.10-37-1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 | citHeader("To cite in publications use:")
## R >= 2.8.0 passes package metadata to citation().
if(!exists("meta") || is.null(meta)) meta <- packageDescription("tseries")
year <- sub("-.*", "", meta$Date)
note <- sprintf("R package version %s.", meta$Version)
citEntry(entry = "Manual",
title = "tseries: Time Series Analysis and Computational Finance",
author = c(
person("Adrian", "Trapletti",
email = "adrian@trapletti.org"),
person("Kurt", "Hornik",
email = "Kurt.Hornik@R-project.org")),
year = year,
note = note,
url = "https://CRAN.R-project.org/package=tseries",
textVersion = {
paste("Adrian Trapletti and Kurt Hornik",
sprintf("(%s).", year),
"tseries: Time Series Analysis and Computational Finance.",
note)
})
|