gpt4 book ai didi

使用 knitr 将 R 脚本转换为 HTML。完成基础知识

转载 作者:行者123 更新时间:2023-12-04 13:22:58 26 4
gpt4 key购买 nike

我想知道如何将 R 脚本转换为 HTML 报告(从它的声音来看,使用 knitr 是可行的方法)。如果可能的话,我想使用 RStudio 来做到这一点。

假设我必须遵循 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)

我尝试在互联网上四处看看,感觉好像所有的步骤都超出了我的理解范围。

我是否需要制作另一个包含调用上述脚本的 stitch()/knit() 函数的 R 脚本?

谢谢,

最佳答案

在您的 R 脚本上调用 knitr::spin()。或者等效地,单击 notebook button在 RStudio 工具栏上。

关于使用 knitr 将 R 脚本转换为 HTML。完成基础知识,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/28445224/

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