From 30f3de608f181ff1a6e35f94451f46b7e983548d Mon Sep 17 00:00:00 2001 From: James Balamuta Date: Wed, 26 Apr 2017 09:49:08 -0500 Subject: [PATCH] Update paper references to be current. --- DESCRIPTION | 12 ++++++------ R/RcppExports.R | 6 +++--- R/datasets-docs.R | 10 +++++----- R/iccbeta-internal.R | 2 +- cran-comments.md | 16 +++++++++++++++- inst/CITATION | 5 +++-- man/Hofmann.Rd | 2 +- man/icc_beta.Rd | 6 +++--- man/iccbeta-package.Rd | 8 ++++---- man/simICCdata.Rd | 8 ++++---- src/icc_beta.cpp | 6 +++--- 11 files changed, 48 insertions(+), 33 deletions(-) diff --git a/DESCRIPTION b/DESCRIPTION index c34de2e..4686c94 100644 --- a/DESCRIPTION +++ b/DESCRIPTION @@ -2,18 +2,18 @@ Package: iccbeta Type: Package Title: Multilevel Model Intraclass Correlation for Slope Heterogeneity Version: 1.0.1 -Date: 2017-04-25 +Date: 2017-04-26 Authors@R: c(person("Steven Andrew", "Culpepper", role = c("aut", "cph","cre"), email = "sculpepp@illinois.edu"), person("Herman", "Aguinis", role = c("aut", "cph"), email = "haguinis@gwu.edu")) License: GPL (>= 2) Description: A function and vignettes for computing an intraclass correlation - described in Aguinis & Culpepper (in press). iccbeta quantifies the share - of variance in a dependent variable that is attributed to group - heterogeneity in slopes. -Imports: Rcpp (>= 0.11.1) -LinkingTo: Rcpp (>= 0.11.1), RcppArmadillo + described in Aguinis & Culpepper (2015) . + This package quantifies the share of variance in a dependent variable that + is attributed to group heterogeneity in slopes. +Imports: Rcpp (>= 0.12.10) +LinkingTo: Rcpp (>= 0.12.10), RcppArmadillo (>= 0.7.800) Depends: R (>= 3.0.2), lme4 URL: https://github.com/tmsalab/iccbeta BugReports: https://github.com/tmsalab/iccbeta/issues diff --git a/R/RcppExports.R b/R/RcppExports.R index 8271dc5..aa57c82 100644 --- a/R/RcppExports.R +++ b/R/RcppExports.R @@ -5,7 +5,7 @@ #' relationships across higher-order processes/units. #' #' A function and vignettes for computing the intraclass correlation described -#' in Aguinis & Culpepper (in press). iccbeta quantifies the share of variance +#' in Aguinis & Culpepper (2015). iccbeta quantifies the share of variance #' in an outcome variable that is attributed to heterogeneity in slopes due to #' higher-order processes/units. #' @param X The design \code{matrix} of fixed effects from a lmer model. @@ -21,14 +21,14 @@ #' \code{\link[lme4]{VarCorr}}, \code{\link[RLRsim]{LRTSim}}, #' \code{\link{Hofmann}}, \code{\link{simICCdata}} #' @references -#' Aguinis, H., & Culpepper, S.A. (in press). An expanded decision making +#' Aguinis, H., & Culpepper, S.A. (2015). An expanded decision making #' procedure for examining cross-level interaction effects with multilevel #' modeling. \emph{Organizational Research Methods}. Available at: #' \url{http://hermanaguinis.com/pubs.html} #' @export #' @examples #' \dontrun{ -#' # Simulated Data Example from Aguinis & Culpepper (in press) +#' # Simulated Data Example from Aguinis & Culpepper (2015) #' data(simICCdata) #' require(lme4) #' diff --git a/R/datasets-docs.R b/R/datasets-docs.R index dd3675e..acc2206 100644 --- a/R/datasets-docs.R +++ b/R/datasets-docs.R @@ -13,7 +13,7 @@ #' } #' @source #' Hofmann, D.A., Griffin, M.A., & Gavin, M.B. (2000). The application of hierarchical linear modeling to management research. In K.J. Klein, & S.W.J. Kozlowski (Eds.), Multilevel theory, research, and methods in organizations: Foundations, extensions, and new directions (pp. 467-511). Hoboken, NJ: Jossey-Bass. -#' @references Aguinis, H., & Culpepper, S.A. (in press). An expanded decision +#' @references Aguinis, H., & Culpepper, S.A. (2015). An expanded decision #' making procedure for examining cross-level interaction effects with #' multilevel modeling. \emph{Organizational Research Methods}. #' Available at: \url{http://hermanaguinis.com/pubs.html} @@ -53,9 +53,9 @@ #' } "Hofmann" -#' Simulated data example from Aguinis and Culpepper (in press). +#' Simulated data example from Aguinis and Culpepper (2015). #' -#' A simulated data example from Aguinis and Culpepper (in press) to demonstrate +#' A simulated data example from Aguinis and Culpepper (2015) to demonstrate #' the \code{\link{icc_beta}} function for computing the proportion of variance #' in the outcome variable that is attributed to heterogeneity in slopes due to #' higher-order processes/units. @@ -70,8 +70,8 @@ #' \item{\code{Y}}{A simulated outcome variable.} #' } #' @details -#' See Aguinis and Culpepper (in press) for the model used to simulate the dataset. -#' @source Aguinis, H., & Culpepper, S.A. (in press). An expanded decision +#' See Aguinis and Culpepper (2015) for the model used to simulate the dataset. +#' @source Aguinis, H., & Culpepper, S.A. (2015). An expanded decision #' making procedure for examining cross-level interaction effects with #' multilevel modeling. \emph{Organizational Research Methods}. #' Available at: \url{http://www.hermanaguinis.com/pubs.html} diff --git a/R/iccbeta-internal.R b/R/iccbeta-internal.R index 8144ce0..c31e73c 100644 --- a/R/iccbeta-internal.R +++ b/R/iccbeta-internal.R @@ -4,7 +4,7 @@ NULL #' @references -#' Aguinis, H., & Culpepper, S.A. (in press). +#' Aguinis, H., & Culpepper, S.A. (2015). #' An expanded decision making procedure for examining cross-level interaction #' effects with multilevel modeling. \emph{Organizational Research Methods}. #' Available at: \url{http://www.hermanaguinis.com/pubs.html} diff --git a/cran-comments.md b/cran-comments.md index ec843d2..d9bfaa5 100644 --- a/cran-comments.md +++ b/cran-comments.md @@ -3,9 +3,23 @@ * ubuntu 12.04 (on travis-ci), R 3.4.0 * win-builder (devel and release) +## Feedback + +The previously submitted version of this package had a CRAN maintainer request +preprint information regarding Aguinis & Culpepper (in press). This has been +updated in the description and relevant documentation to point to the paper +published in 2015 on the authors respective website. Furthermore, we have +changed the sentence in the `DESCRIPTION` file from: + +> iccbeta quantifies the share ... + +To: + +> This package quantifies the share ... + ## R CMD check results -0 errors | 0 warnings | 0 note +0 errors | 0 warnings | 1 note We have one note related to spelling: diff --git a/inst/CITATION b/inst/CITATION index cca5155..c4a7597 100644 --- a/inst/CITATION +++ b/inst/CITATION @@ -5,8 +5,9 @@ citEntry(entry="Article", author = personList(as.person("Herman Aguinis"), as.person("Steven Andrew Culpepper")), journal = "Organization Research Methods", - year = "in press", + year = "2015", url = "http://www.hermanaguinis.com/pubs.html", pdf = "http://www.hermanaguinis.com/ORM2015.pdf", - textVersion = "Agunis, H. & Culpepper, S. A. (in press). An expanded decision making procedure for examining cross-level interaction effects with multilevel modeling. Organizational Research Methods.") + doi = "10.1177/1094428114563618", + textVersion = "Agunis, H. & Culpepper, S. A. (2015). An expanded decision making procedure for examining cross-level interaction effects with multilevel modeling. Organizational Research Methods.") diff --git a/man/Hofmann.Rd b/man/Hofmann.Rd index a504ff5..408fcf2 100644 --- a/man/Hofmann.Rd +++ b/man/Hofmann.Rd @@ -56,7 +56,7 @@ sim.LRT <- LRTSim(X, Z, 0, diag(ncol(Z))) } } \references{ -Aguinis, H., & Culpepper, S.A. (in press). An expanded decision +Aguinis, H., & Culpepper, S.A. (2015). An expanded decision making procedure for examining cross-level interaction effects with multilevel modeling. \emph{Organizational Research Methods}. Available at: \url{http://hermanaguinis.com/pubs.html} diff --git a/man/icc_beta.Rd b/man/icc_beta.Rd index 348f44c..8aec70d 100644 --- a/man/icc_beta.Rd +++ b/man/icc_beta.Rd @@ -24,13 +24,13 @@ vy The variance of the dependent variable. } \description{ A function and vignettes for computing the intraclass correlation described -in Aguinis & Culpepper (in press). iccbeta quantifies the share of variance +in Aguinis & Culpepper (2015). iccbeta quantifies the share of variance in an outcome variable that is attributed to heterogeneity in slopes due to higher-order processes/units. } \examples{ \dontrun{ -# Simulated Data Example from Aguinis & Culpepper (in press) +# Simulated Data Example from Aguinis & Culpepper (2015) data(simICCdata) require(lme4) @@ -81,7 +81,7 @@ sim.LRT <- LRTSim(X, Z, 0, diag(ncol(Z))) } } \references{ -Aguinis, H., & Culpepper, S.A. (in press). An expanded decision making +Aguinis, H., & Culpepper, S.A. (2015). An expanded decision making procedure for examining cross-level interaction effects with multilevel modeling. \emph{Organizational Research Methods}. Available at: \url{http://hermanaguinis.com/pubs.html} diff --git a/man/iccbeta-package.Rd b/man/iccbeta-package.Rd index 8c0b762..912b828 100644 --- a/man/iccbeta-package.Rd +++ b/man/iccbeta-package.Rd @@ -7,9 +7,9 @@ \title{iccbeta: Multilevel Model Intraclass Correlation for Slope Heterogeneity} \description{ A function and vignettes for computing an intraclass correlation -described in Aguinis & Culpepper (in press). iccbeta quantifies the share -of variance in a dependent variable that is attributed to group -heterogeneity in slopes. +described in Aguinis & Culpepper (2015) . +This package quantifies the share of variance in a dependent variable that +is attributed to group heterogeneity in slopes. } \examples{ \dontrun{ @@ -60,7 +60,7 @@ sim.LRT <- LRTSim(X, Z, 0, diag(ncol(Z))) } } \references{ -Aguinis, H., & Culpepper, S.A. (in press). +Aguinis, H., & Culpepper, S.A. (2015). An expanded decision making procedure for examining cross-level interaction effects with multilevel modeling. \emph{Organizational Research Methods}. Available at: \url{http://www.hermanaguinis.com/pubs.html} diff --git a/man/simICCdata.Rd b/man/simICCdata.Rd index 0a67ce1..fe97187 100644 --- a/man/simICCdata.Rd +++ b/man/simICCdata.Rd @@ -3,7 +3,7 @@ \docType{data} \name{simICCdata} \alias{simICCdata} -\title{Simulated data example from Aguinis and Culpepper (in press).} +\title{Simulated data example from Aguinis and Culpepper (2015).} \format{A data frame with 900 observations (i.e., 30 observations nested within 30 groups) on the following 6 variables. \describe{ @@ -15,7 +15,7 @@ within 30 groups) on the following 6 variables. \item{\code{Y}}{A simulated outcome variable.} }} \source{ -Aguinis, H., & Culpepper, S.A. (in press). An expanded decision +Aguinis, H., & Culpepper, S.A. (2015). An expanded decision making procedure for examining cross-level interaction effects with multilevel modeling. \emph{Organizational Research Methods}. Available at: \url{http://www.hermanaguinis.com/pubs.html} @@ -24,13 +24,13 @@ Available at: \url{http://www.hermanaguinis.com/pubs.html} simICCdata } \description{ -A simulated data example from Aguinis and Culpepper (in press) to demonstrate +A simulated data example from Aguinis and Culpepper (2015) to demonstrate the \code{\link{icc_beta}} function for computing the proportion of variance in the outcome variable that is attributed to heterogeneity in slopes due to higher-order processes/units. } \details{ -See Aguinis and Culpepper (in press) for the model used to simulate the dataset. +See Aguinis and Culpepper (2015) for the model used to simulate the dataset. } \examples{ \dontrun{ diff --git a/src/icc_beta.cpp b/src/icc_beta.cpp index d5f3114..17faf40 100644 --- a/src/icc_beta.cpp +++ b/src/icc_beta.cpp @@ -4,7 +4,7 @@ //' relationships across higher-order processes/units. //' //' A function and vignettes for computing the intraclass correlation described -//' in Aguinis & Culpepper (in press). iccbeta quantifies the share of variance +//' in Aguinis & Culpepper (2015). iccbeta quantifies the share of variance //' in an outcome variable that is attributed to heterogeneity in slopes due to //' higher-order processes/units. //' @param X The design \code{matrix} of fixed effects from a lmer model. @@ -20,14 +20,14 @@ //' \code{\link[lme4]{VarCorr}}, \code{\link[RLRsim]{LRTSim}}, //' \code{\link{Hofmann}}, \code{\link{simICCdata}} //' @references -//' Aguinis, H., & Culpepper, S.A. (in press). An expanded decision making +//' Aguinis, H., & Culpepper, S.A. (2015). An expanded decision making //' procedure for examining cross-level interaction effects with multilevel //' modeling. \emph{Organizational Research Methods}. Available at: //' \url{http://hermanaguinis.com/pubs.html} //' @export //' @examples //' \dontrun{ -//' # Simulated Data Example from Aguinis & Culpepper (in press) +//' # Simulated Data Example from Aguinis & Culpepper (2015) //' data(simICCdata) //' require(lme4) //'