我想知道如何將R腳本轉換爲HTML報告(從使用knitr的聲音中可以看出來)。如果可能的話,我想這樣做沒有使用RStudio。R腳本到與knitr的HTML。完整的基礎知識
說我有下述R腳本
#Load librarys + initilisation calculations
#User shouldn't see the next 2 lines
library(foo)
set.seed(42)
#User will see the next 3 lines
print("This is some text to describe what the user is about to see")
head(mtcars)
boxplot(mtcars$mpg~mtcars$cyl)
#Not shown to user:
numbers <- runif(100)
moreNumbers <- rnorm(100)
group <- c(rep("a",100), rep("b",100))
df <- data.frame(c(numbers, moreNumbers), group)
names(df) <- c("ExampleData", "g")
#Show to user
t.test(df$ExampleData~df$g)
我試過有在互聯網一看,感覺好像所有的步驟都只是有點太超前了什麼,我明白了。
我是否需要製作另一個R腳本,其中包含調用上述腳本的stitch()/knit()
函數?
謝謝,
你不需要Rstudio使用knitr。見http://rmarkdown.rstudio.com/ – Jeff 2015-02-11 02:12:12