要查看发生了什么,我总是建议保存感兴趣的对象,然后使用str
.
library(ltm)
library(xtable)
mat <- matrix(rnorm(1000), 100, 10, dimnames = list(NULL, LETTERS[1:10]))
out <- rcor.test(mat)
str(out)
看起来正在打印的表格实际上并未存储在此处。那么我们来看看 rcor.test 的 print 方法
getAnywhere(print.rcor.test)
我们看到该方法实际上构造了打印出来但不返回它的矩阵。因此,要获取矩阵以便我们可以从中使用 xtable,我们只需...窃取代码来构造该矩阵。我们将返回构造的矩阵,而不是打印出矩阵然后返回原始对象。
get.rcor.test.matrix <- function (x, digits = max(3, getOption("digits") - 4), ...)
{
### Modified from print.rcor.test
mat <- x$cor.mat
mat[lower.tri(mat)] <- x$p.values[, 3]
mat[upper.tri(mat)] <- sprintf("%6.3f", as.numeric(mat[upper.tri(mat)]))
mat[lower.tri(mat)] <- sprintf("%6.3f", as.numeric(mat[lower.tri(mat)]))
ind <- mat[lower.tri(mat)] == paste(" 0.", paste(rep(0, digits),
collapse = ""), sep = "")
mat[lower.tri(mat)][ind] <- "<0.001"
ind <- mat[lower.tri(mat)] == paste(" 1.", paste(rep(0, digits),
collapse = ""), sep = "")
mat[lower.tri(mat)][ind] <- ">0.999"
diag(mat) <- " *****"
cat("\n")
## Now for the modifications
return(mat)
## and ignore the rest
#print(noquote(mat))
#cat("\nupper diagonal part contains correlation coefficient estimates",
# "\nlower diagonal part contains corresponding p-values\n\n")
#invisible(x)
}
现在让我们获取矩阵并在其上使用 xtable。
ourmatrix <- get.rcor.test.matrix(out)
xtable(ourmatrix)