1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192
|
## ----------------------------------------------------------------------------
## Author: Jason W. Morgan
## URL: http://leftcensored.skepsi.net
## Date: 2011.06.21
##
## Description: This file contains functions for extracting model summaries
## according to the requirements of mtable() and toLatex() available in the
## memisc packages.
##
## Note: This code is based heavily on the examples and functions provided by
## Martin Elff in his memisc package. If you find it useful, you should cite
## *his* work. You can find his website here: http://www.martin-elff.net
##
## Copyright 2011 Jason W. Morgan
##
## This program is free software: you can redistribute it and/or modify it
## under the terms of the GNU General Public License as published by the Free
## Software Foundation, either version 3 of the License, or (at your option)
## any later version.
##
## This program is distributed in the hope that it will be useful, but WITHOUT
## ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
## FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
## more details.
##
## You should have received a copy of the GNU General Public License along with
## this program. If not, see <http://www.gnu.org/licenses/>.
## ----------------------------------------------------------------------------
## ----------------------------------------------------------------------------
## Supported model types
## ----------------------------------------------------------------------------
##
## coxph, survreg - Cox proportional hazards models and parametric survival
## models from the survival library.
##
## aftreg, phreg, weibreg - parametric AFT, proportional hazards, and Weibull
## models available from the eha library.
##
## mer - multilevel mixed effects models as provided by the lme4 package. The
## model objects produced in the beta lme4a package are not supported.
##
## ----------------------------------------------------------------------------
## ----------------------------------------------------------------------------
## Summary functions for survival objects.
## ----------------------------------------------------------------------------
setSummaryTemplate(coxph = c("Log-likelihood" = "($logLik:f#)",
"AIC" = "($AIC:f#)",
"BIC" = "($BIC:f#)",
"N" = "($N:d)"))
setSummaryTemplate(survreg = c("Log-likelihood" = "($logLik:f#)",
"AIC" = "($AIC:f#)",
"BIC" = "($BIC:f#)",
"N" = "($N:d)"))
setSummaryTemplate(phreg = c("Log-likelihood" = "($logLik:f#)",
"AIC" = "($AIC:f#)",
"BIC" = "($BIC:f#)",
"N" = "($N:d)"))
getSummary.coxph <- function(obj, alpha = 0.05, ...) {
N <- obj$n
## Take the info right out of the object to guarantee that I get the right
## standard errors.
b <- coef(obj)
se <- sqrt(diag(vcov(obj)))
coef <- cbind(b, se, b / se, 1-pnorm(abs(b/se)))
lower <- qnorm(p = alpha/2, mean = coef[, 1], sd = coef[,2])
upper <- qnorm(p = 1 - alpha/2, mean = coef[, 1], sd = coef[,2])
coef <- cbind(coef, lower, upper)
# Patched by ME 2017-09-02
dn <- list(
rownames(coef),
c("est","se","stat","p","lwr","upr"),
rownames(attr(obj$terms,"factors"))[1]
)
dim(coef) <- c(dim(coef)[1],dim(coef)[2],1)
dimnames(coef) <- dn
ll <- obj$loglik[2]
K <- length(b)
AIC <- -2*ll + 2*K
BIC <- -2*ll + K*log(N)
sumstat <- c(logLik = ll, AIC = AIC, BIC = BIC, N = N)
list(coef = coef,
sumstat = sumstat,
contrasts = obj$contrasts,
xlevels = obj$xlevels,
call = obj$call)
}
getSummary.survreg <- function(obj, alpha = 0.05, ...) {
coef <- cbind(c(coef(obj), obj$scale), c(sqrt(diag(obj$var)),NA))
K <- length(coef) - 1
N <- obj$df.residual + K
stat <- coef[, 1] / coef[, 2]
pval <- 1-pnorm(abs(stat))
lower <- qnorm(p = alpha/2, mean = coef[, 1], sd = coef[,2])
upper <- qnorm(p = 1 - alpha/2, mean = coef[, 1], sd = coef[,2])
coef <- cbind(coef, stat, pval, lower, upper)
# Patched by ME 2017-09-02
dn <- list(
rownames(coef),
c("est","se","stat","p","lwr","upr"),
rownames(attr(obj$terms,"factors"))[1]
)
dim(coef) <- c(dim(coef)[1],dim(coef)[2],1)
dimnames(coef) <- dn
rownames(coef)[nrow(coef)] <- "scale"
pv <- c("(Intercept)",colnames(attr(obj$terms,"factors")))
pv <- match(pv,rownames(coef),nomatch=0)
distparms <- coef[-pv,,,drop=FALSE]
coef <- coef[pv,,,drop=FALSE]
ll <- obj$loglik[2]
AIC <- -2*ll + 2*K
BIC <- -2*ll + K*log(N)
sumstat <- c(logLik = ll, AIC = AIC, BIC = BIC, N = N)
list(coef = coef,
distparms = distparms,
sumstat = sumstat,
contrasts = obj$contrasts,
xlevels = obj$xlevels,
call = obj$call)
}
## aftreg(), phreg(), weibreg() are part of the eha package.
getSummary.aftreg <- function(obj, alpha = 0.05, ...) {
N <- obj$n
coef <- cbind(coef(obj), sqrt(diag(obj$var)))
stat <- coef[, 1] / coef[, 2]
pval <- 1-pnorm(abs(stat))
lower <- qnorm(p = alpha/2, mean = coef[, 1], sd = coef[, 2])
upper <- qnorm(p = 1 - alpha/2, mean = coef[, 1], sd = coef[, 2])
coef <- cbind(coef, stat, pval, lower, upper)
# Patched by ME 2017-09-02
dn <- list(
rownames(coef),
c("est","se","stat","p","lwr","upr"),
rownames(attr(obj$terms,"factors"))[1]
)
dim(coef) <- c(dim(coef)[1],dim(coef)[2],1)
dimnames(coef) <- dn
pv <- colnames(attr(obj$terms,"factors"))
pv <- match(pv,rownames(coef))
distparms <- coef[-pv,,,drop=FALSE]
coef <- coef[pv,,,drop=FALSE]
ll <- obj$loglik[2]
K <- length(coef[,1,])
AIC <- -2*ll + 2*K
BIC <- -2*ll + K*log(N)
sumstat <- c(logLik = ll, AIC = AIC, BIC = BIC, N = N)
list(coef = coef,
distparms = distparms,
sumstat = sumstat,
contrasts = obj$contrasts,
xlevels = obj$xlevels,
call = obj$call)
}
getSummary.phreg <- function(obj, alpha = 0.05, ...) {
getSummary.aftreg(obj, alpha = alpha, ...)
}
getSummary.weibreg <- function(obj, alpha = 0.05, ...) {
getSummary.aftreg(obj, alpha = alpha, ...)
}
|