我正在使用 knit 将我的 .Rhtml 文件转换为 .html 文件。我正在调用一个名为 Q1 的块的输出:
<!--begin.rcode Q1,echo=FALSE,fig.show="all",fig.align="center",warning=FALSE
end.rcode-->
块来了,它基本上是一个 2x2 布局的 ggplot2 图形。
library(ggplot2)
myplot = list()
for (i in 1:4){
x = 1:100
y = sample(100,100)
data = data.frame(x=x,y=y)
myplot[[i]] = ggplot(data,aes(x=x,y=y))+geom_point()+labs(title="bla")}
do.call(grid.arrange,c(myplot,list(nrow=2,ncol =2)))
现在,在查看生成的 html 文件时,我想加入以下功能:单击每个图的标题时,我想有一个链接(例如到数据库)。这有可能吗?
谢谢