我有興趣編寫一個函數,它將一個數據框作爲輸入,並根據數據框中的信息通過knitr作爲輸出返回一個html頁面。如何在R函數中輸出html文件?
這是那種我想寫功能的僞碼的:
htmlOuput <- function(Df) {
newDf<-someManipulation(Df)
meltedDf<-melt(Df)
g<-ggplot(meltedDf)
return (html(g)) # This is the part that I am not sure about
}
有沒有辦法以輸出HTML頁面,通過knitr函數的輸出?
'browseURL的操縱(臨時文件中(f = '的.html'))'' – rawr
g'是存儲ggplot對象,而不是data.frame。 – alistaire
我知道'g'是一個ggplot對象,所以我想通過ggplot在html文件中生成繪圖 – DKangeyan