From e406660ae8f4564474d18394c6143463d9d8e06a Mon Sep 17 00:00:00 2001 From: Walmes Zeviani <walmes@ufpr.br> Date: Wed, 30 Sep 2015 21:34:14 -0300 Subject: [PATCH] Remove @method of the qic.mcglm() function I don't know the reasons, but when `@method` is present `S3method(residuals,mcglm)` is included in the NAMESPACE and thi error comes up Loading mcglm Error: object 'qic' not found whilst loading namespace 'mcglm' I think that the `qic` is not considered a generic S3 method by R. So I kept `qic.mcglm` as a regular function. No problems with building process where observed. --- R/mc_qic.R | 1 - 1 file changed, 1 deletion(-) diff --git a/R/mc_qic.R b/R/mc_qic.R index 6957c48..e51bd66 100644 --- a/R/mc_qic.R +++ b/R/mc_qic.R @@ -12,7 +12,6 @@ #' #' @author Wagner Hugo Bonat, \email{wbonat@@ufpr.br} #' -#' @method qic mcglm #' @export qic.mcglm <- function(object, object.iid) { -- GitLab