Skip to content
Snippets Groups Projects
Commit d36662a8 authored by wbonat's avatar wbonat
Browse files

Fix bug in confint function

parent ba656b9b
No related branches found
No related tags found
No related merge requests found
......@@ -214,7 +214,7 @@ confint.mcglm <- function(object, parm, level = 0.95, ...) {
ci <- temp$Estimates + temp$Std.error %o% fac
colnames(ci) <- paste0(format(a, 2), "%")
rownames(ci) <- temp$Parameters
return(ci[parm])
return(ci[parm,])
}
#' @title Extract Model Fitted Values of McGLM
#' @name fitted.mcglm
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment