From 1ff624653764837ee5728c6792ce5968e6989b1c Mon Sep 17 00:00:00 2001 From: Marvin Wright Date: Thu, 7 Apr 2016 10:18:39 +0200 Subject: [PATCH] update citation information --- ranger-r-package/ranger/R/ranger.R | 2 +- ranger-r-package/ranger/man/ranger.Rd | 2 +- source/src/utility/ArgumentHandler.cpp | 10 +++++----- 3 files changed, 7 insertions(+), 7 deletions(-) diff --git a/ranger-r-package/ranger/R/ranger.R b/ranger-r-package/ranger/R/ranger.R index 8c01dd3e5..4acf152d2 100644 --- a/ranger-r-package/ranger/R/ranger.R +++ b/ranger-r-package/ranger/R/ranger.R @@ -149,7 +149,7 @@ ##' ##' @author Marvin N. Wright ##' @references -##' Wright, M. N., & Ziegler, A. (2015). ranger: A fast implementation of random forests for high dimensional data in C++ and R. arXiv preprint \url{http://arxiv.org/abs/1508.04409}. +##' Wright, M. N. & Ziegler, A. (2016). ranger: A Fast Implementation of Random Forests for High Dimensional Data in C++ and R. Journal of Statistical Software, in press. \url{http://arxiv.org/abs/1508.04409}. ##' ##' Breiman, L. (2001). Random forests. Mach Learn, 45(1), 5-32. \cr ##' Ishwaran, H., Kogalur, U. B., Blackstone, E. H., & Lauer, M. S. (2008). Random survival forests. Ann Appl Stat, 841-860. \cr diff --git a/ranger-r-package/ranger/man/ranger.Rd b/ranger-r-package/ranger/man/ranger.Rd index 22805994f..185299fc2 100644 --- a/ranger-r-package/ranger/man/ranger.Rd +++ b/ranger-r-package/ranger/man/ranger.Rd @@ -167,7 +167,7 @@ ranger(trait ~ ., data = dat.gwaa) Marvin N. Wright } \references{ -Wright, M. N., & Ziegler, A. (2015). ranger: A fast implementation of random forests for high dimensional data in C++ and R. arXiv preprint \url{http://arxiv.org/abs/1508.04409}. +Wright, M. N. & Ziegler, A. (2016). ranger: A Fast Implementation of Random Forests for High Dimensional Data in C++ and R. Journal of Statistical Software, in press. \url{http://arxiv.org/abs/1508.04409}. Breiman, L. (2001). Random forests. Mach Learn, 45(1), 5-32. \cr Ishwaran, H., Kogalur, U. B., Blackstone, E. H., & Lauer, M. S. (2008). Random survival forests. Ann Appl Stat, 841-860. \cr diff --git a/source/src/utility/ArgumentHandler.cpp b/source/src/utility/ArgumentHandler.cpp index 70ddc3b5c..8704b72e8 100644 --- a/source/src/utility/ArgumentHandler.cpp +++ b/source/src/utility/ArgumentHandler.cpp @@ -470,13 +470,13 @@ void ArgumentHandler::displayVersion() { std::cout << "Ranger version: " << RANGER_VERSION << std::endl; std::cout << std::endl; std::cout << "Please cite Ranger: " << std::endl; - std::cout << "Marvin N. Wright and .. (2014). Ranger. Journal." << std::endl; + std::cout << "Wright, M. N. & Ziegler, A. (2016). ranger: A Fast Implementation of Random Forests for High Dimensional Data in C++ and R. Journal of Statistical Software, in press." << std::endl; std::cout << std::endl; std::cout << "BibTeX:" << std::endl; std::cout << "@Article{," << std::endl; - std::cout << " title = {Ranger}" << std::endl; - std::cout << " author = {Marvin N. Wright and ..}," << std::endl; - std::cout << " journal = {Journal}," << std::endl; - std::cout << " year = {2014}," << std::endl; + std::cout << " title = {ranger: {{A}} fast implementation of random forests for high dimensional data in {{C}}++ and {{R}}}," << std::endl; + std::cout << " author = {Wright, Marvin N. and Ziegler, Andreas}," << std::endl; + std::cout << " journal = {Journal of Statistical Software}," << std::endl; + std::cout << " year = {2016}," << std::endl; std::cout << "}" << std::endl; }