-2

我正在尝试从 excel VBA 宏运行 R 代码。

R 函数使用两个输入: DataFilter(Input1,Input2) 该函数进行一些过滤,然后在文件夹 N:\DataFolder 中保存一个新的 excel 文件

您能否帮助创建一个使用两个新文本输入运行 DataFilter 函数的 VBA 宏(假设电子表格中 sheet1 中的单元格 A1 和 B1)。从那里我将能够在 vba 宏中打开 excel 文件。

谢谢!

4

2 回答 2

4

您可以通过创建 Windows Shell 对象并将执行 R 脚本的字符串传递给它来在 VBA 中运行 R 脚本

Sub RunRscript()
'runs an external R code through Shell
'The location of the RScript is 'C:\R_code'
'The script name is 'hello.R'

Dim shell As Object
Set shell = VBA.CreateObject("WScript.Shell")
Dim waitTillComplete As Boolean: waitTillComplete = True
Dim style As Integer: style = 1
Dim errorCode As Integer
Dim path As String
path = "RScript C:\R_code\hello.R"
errorCode = shell.Run(path, style, waitTillComplete)
End Sub

来源

您可以将单元格值作为命令行参数传递给 R 脚本。查看?commandArgs更多。

于 2016-10-31T20:26:37.387 回答
0

我不确定这是一个直接的答案。您可能想看看它是如何使用 Bert 工具包完成的。这似乎有助于将 R 和 Excel 相互集成。

https://bert-toolkit.com/

于 2018-01-23T15:13:38.293 回答