虽然这里更普遍地考虑了这个问题:
我特别想知道如何将数据框中的文本显示为.html文件中的超链接。我正在使用R2HTML
包。
foo <- data.frame(a=c(1,2,3), b=c(4,5,6),
url=c('http://nytimes.com', 'http://cnn.com', 'http://www.weather.gov'))
HTML(foo, file='foo.html')
在上面的示例中,我希望http://nytimes.com
等在foo.html
文件中显示为超链接。
如果我遗漏了一些明显的东西,请道歉。
答案 0 :(得分:8)
以下是使用googleVis
foo <- transform(foo, url = paste('<a href = ', shQuote(url), '>', url, '</a>'))
x = gvisTable(foo, options = list(allowHTML = TRUE))
plot(x)