Skip to content

Commit

Permalink
citation fix
Browse files Browse the repository at this point in the history
  • Loading branch information
jaredhuling committed Jul 26, 2024
1 parent dbf4d18 commit b304301
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 8 deletions.
2 changes: 1 addition & 1 deletion R/oem.R
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@
#' faster in certain situations, ie when n >> p
#' @return An object with S3 class "oem"
#' @references Shifeng Xiong, Bin Dai, Jared Huling, and Peter Z. G. Qian. Orthogonalizing
#' EM: A design-based least squares algorithm. Technometrics, 58(3):285-293, 2016. \url{https://amstat.tandfonline.com/doi/abs/10.1080/00401706.2015.1054436}
#' EM: A design-based least squares algorithm. Technometrics, 58(3):285-293, 2016. \url{https://doi.org/10.1080/00401706.2015.1054436}
#' @useDynLib oem, .registration=TRUE
#' @import Rcpp
#' @import Matrix
Expand Down
19 changes: 12 additions & 7 deletions inst/CITATION
Original file line number Diff line number Diff line change
@@ -1,19 +1,24 @@
citHeader("To cite oem in publications use:")

citEntry(,
entry = "Article",

bibentry(bibtype = "Article",
author = "Shifeng Xiong and Bin Dai and Jared Huling and Peter Z. G. Qian",
author = c(person(given = "Shifeng",
family = "Xiong"),
person(given = "Bin",
family = "Dai"),
person(given = c("Jared", "D."),
family = "Huling",
email = "[email protected]"),
person(given = c("Peter", "Z. G."),
family = "Qian")),
title = "Orthogonalizing EM: A design-based least squares algorithm",
journal = "Technometrics",
year = "2016",
volume = "58",
pages = "285--293",
doi = "10.1080/00401706.2015.1054436",
url = "https://doi.org/10.1080/00401706.2015.1054436",
textVersion = paste("Xiong, S., Dai, B., Huling, J., Qian, P. Z. G. (2016) ",
"Orthogonalizing EM: A design-based least squares algorithm, ",
"Technometrics, Volume 58, Pages 285-293,",
"http://dx.doi.org/10.1080/00401706.2015.1054436.")
header = "To cite oem in publications use:"
)

bibentry(bibtype = "Article",
Expand Down

0 comments on commit b304301

Please sign in to comment.