gpt4 book ai didi

r - 如何从 R 中刷新 excel 文件?

转载 作者:行者123 更新时间:2023-12-04 19:49:42 25 4
gpt4 key购买 nike

我有一些带有简单公式的 excel 文件,例如 =SUM(A1:A3)

我需要将文件导入R,但在此之前我需要刷新公式。有没有办法从 R 中刷新文件?有用于在 R 数据框中导入数据的好包(例如 R xslx 包),但我需要先刷新我的公式。

有什么建议吗?谢谢!

最佳答案

您应该能够使用 RDCOMClient 执行此操作:

library(RDCOMClient)
ex = COMCreate("Excel.Application")
book = ex$Workbooks()$Open("my_file.xlsx")
book$Worksheets("Sheet1")$Calculate() # if you have many sheets you could loop through them or use apply functions based on their actual names
book$Save()
book$Close()

这是关于 underlying VBA 的另一个话题

关于r - 如何从 R 中刷新 excel 文件?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/57591264/

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