gpt4 book ai didi

r - 包括 Rmarkdown 表中的链接 (pdf)

转载 作者:行者123 更新时间:2023-12-04 14:25:34 24 4
gpt4 key购买 nike

创建 pdf 时,我试图在 Rmarkdown 的“kable”表中包含指向特定网页的链接。

该表有 4 列,我希望链接位于当前包含字符串的第二列中。该表的输出如下;

    knitr::kable(ind_rank_table_final,row.names = FALSE,caption = "Industry Rank",align = rep("l",ncol(ind_rank_table)))

最佳答案

使用 paste0 ,您可以在您的数据框中构建 Markdown 格式的 URL,然后将其传递给 kable ,像这样:

---
output: pdf_document
---
```{r}
# some urls
urls <- rep("https://stackoverflow.com/", 10)
# use paste0 to compose markdown-formatted hyperlinks
mtcars$mpg <- paste0("[", mtcars$mpg, "](", urls, ")")
# print the table, with hyperlinked text
knitr::kable(head(mtcars))
```

你可以看到结果,mpg 列中的蓝色文本,如果我将鼠标悬停在上面,我会看到 URL:

enter image description here

如果你想打印表格中的 URL,并让它们可以点击,那么你可以做这样的事情 mtcars$mpg <- paste0("[", urls, "](", urls, ")")像这样:

enter image description here

那是你追求的吗?此使用 paste0对表格进行各种操作非常方便,例如, combining multiple values in one cell , 和 applying conditional formatting (like bold for significant values)

关于r - 包括 Rmarkdown 表中的链接 (pdf),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/35078430/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com