Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我发现 XLConnect 包对于将矩阵导出到 CLOSED 工作簿很有用,但是有人知道如何写入 OPEN 工作簿吗?
或者,是否有人知道可以在 VBA 中编写的代码以从 R 脚本文件中导入矩阵?
谢谢
麦克风
我一直想做这个并且偶然发现excel.link它很容易写入一个活动的 Excel 表。编写方法非常简单明了:
excel.link
library(excel.link) xlrc[a1] <- seq(1, 10)
请注意,在括号内,您将写入数据将写入的单元格(如果它是数据框,则此单元格将位于所述数据框的左上角)。
结果在活动 excel 文件的活动工作表中:
使用包 excel.link 这可以与 xlsm 以及打开的 excel 一起使用。