/usr/lib/R/site-library/gnm/CITATION is in r-cran-gnm 1.0-8-1build1.
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 | ## R >= 2.8.0 passes package metadata to citation().
if(!exists("meta") || is.null(meta)) meta <- packageDescription("gnm")
year <- sub("-.*", "", meta$Date)
note <- sprintf("R package version %s", meta$Version)
url <- sprintf("http://CRAN.R-project.org/package=gnm", meta$Version)
citEntry(entry="Manual",
title = {"Generalized nonlinear models in R: An overview of the gnm package"},
author = personList(as.person("Heather Turner"),
as.person("David Firth")),
year = year,
note = note,
url = url,
textVersion = paste(
"Heather Turner and David Firth", sprintf("(%s).", year),
"Generalized nonlinear models in R: An overview of the gnm package.",
sprintf("(%s).", note), sprintf("(%s).", url))
)
|