我设法找到了解决方案。这并不容易,因为我需要将矩阵(不能有不同类型的变量)转换为多个列表和子列表。然后可以将相应的索引存储在expression
一个新的列表中。表达式可以保存不同的格式。不幸的是,它们无法评估变量,因此必须通过substitute
函数对其他变量进行索引。很棘手,不知道有没有更优雅的方式,但确实有效。
另一个可能更简单的选择可能是使用 unicode(也包含在示例代码中),但我发现这很棘手。
希望代码有所帮助:
library("forestplot")
data(HRQoL)
clrs <- fpColors(box="royalblue",line="darkblue", summary="royalblue")
tabletext <- list(list(), list()) #Creating a list with "sublists" for each column
tabletext[[1]] <- rownames(HRQoL$Sweden)
tabletext[[2]][1] <- list(expression(paste(italic("r"), " = .42"))) #manual way using expression and paste
tabletext[[2]][2] <- list(substitute(expression(paste(italic("r"),"=",r_string)), list(r_string=HRQoL$Sweden[,2]))) #need substitute function to access variables
tabletext[[2]][3] <- list(substitute(expression(paste(italic("r"),"=",r_string)), list(r_string=sprintf("%.3f", HRQoL$Sweden[,3])))) #The substitute functions allows addicitonal manipulation of strings to be put back into the expression
tabletext[[2]][4] <- list(substitute(expression(paste(italic("t")[df],"=",r_string)), list(r_string=sprintf("%.3f", HRQoL$Sweden[,3]), df="23"))) #One can also substitute multiple elements of expression, use subscripts etc.
tabletext[[1]][2] <- "Use unicode: \u03B2" #Manipulate strings manually, using unicode
tabletext[[1]][4] <- list(expression(bold("Make single line bold"))) #Manipulate strings manually, using unicode
forestplot(tabletext,
txt_gp = fpTxtGp(label = list(gpar(fontfamily = "Times", fontface="italic"),
gpar(fontfamily = "",
col = "blue")),
ticks = gpar(fontfamily = "", cex=1),
xlab = gpar(fontfamily = "HersheySerif", cex = 1.5)),
rbind(HRQoL$Sweden),
col=clrs,
xlab="EQ-5D index")
我试图解释代码中的不同步骤。如果要键入手动字符串,则不需要替换功能。重要提示:无论何时使用表达式,您都需要创建一个新列表。也许有一种更优雅的方式使用该parse
功能,但这一种有效。
因此,在字段中具有不同格式的绘图如下所示: