我想在 R 中链接 HTML,我有这个主数据表,
id mean
22 12
17 23
我有带有名称为report_22(report_id)的数据表的HTML文件,这个表我只有id 22的信息
例如,当我单击第一个数据表中的 id 22 时,我想打开 report_22。
我想为我的所有用户这样做。
报告在目录中:
C:\Users\windows\Documents\dossier1
如果我们没有用于 ID 的 html,例如,我想将其他链接作为 google
library(DescTools) ## to use the function like
### vector with all file with report in name
link <- as.data.frame(list.files('C:/Users/windows/Documents/Doc Bonus_malus',pattern = "^report"))
names(link) <- c('test')
link$test <- as.character(link$test)
path <- getwd()
path <- rep(path,nrow(link))
path <- paste(path,link$test,sep='/')
在 Rmarkdown 表 (pdf) 中包含链接(我想在我的情况下调整此代码)