本文介绍了R使用链接写入Excel的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我想知道如何将r数据帧导出到excel格式文件,并嵌入一些链接。所以我可以使用R创建一个xlsm文件。当打开xlsm文件时,我可以点击某些链接并打开其他文件或网页。
I'm wondering how can I export an r dataframe to excel format file, with some links embeded. So that I can use R to create an xlsm file. When open xlsm file, I can click certain links and open other files or webpage.
我检查了几个RWrite-to-Excel包,但几乎找不到任何一个有这样的功能。
I checked several R "Write-to-Excel" packages but can hardly find any one having such functions.
任何一个想法?
Thx!
推荐答案
xlsx
包具有函数 addHyperlink
,for正是这个目的。 example(addHyperlink)
应该让你开始。
The xlsx
package has the function addHyperlink
, for exactly this purpose. example(addHyperlink)
should get you started.
这篇关于R使用链接写入Excel的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!