gpt4 book ai didi

r - 将 R 输出导出到 Excel

转载 作者:行者123 更新时间:2023-12-02 07:21:29 25 4
gpt4 key购买 nike

我喜欢使用 R 进行统计分析,但发现很难比较不同模型的输出。

有什么办法,我们可以将输出导出到 Excel 以使其更具可读性(使用一些格式,如科学数字表示法、条件格式等)?

根据@42 How to Copy Summary() output from R to Excel的建议,我尝试了 capture.output() 但它无法正常工作。我搜索了很多,找不到解决方案。

最佳答案

使用 XLConnect 包,您可以将 R 输出写入 Excel 文件。

这是一个示例,我编写了一个模型并将摘要发送到 Excel:

library(XLConnect)
dat <- data.frame(rsp = rnorm(100, 0, 1),
pred1 = rnorm(100, 0, 1),
pred2 = rnorm(100, 0, 1))
model <- lm(rsp ~ pred1 + pred2, data = dat)
writeWorksheetToFile("model1.xlsx",
data = summary(dat),
sheet = "summary",
header = TRUE,
clearSheets = TRUE)

关于r - 将 R 输出导出到 Excel,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/37940271/

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