今天当我从RExcelExcel中的addin菜单运行"start R"时,我收到错误消息:
There seems to be no R process connected to Excel
但是在今天之前就可以了,现在也可以将系统时间设置为今天之前的日期,例如2015/12/30.
环境:1. Windows 7 64bit,Excel 2010
2. R 3.1.1或R 3.1.3
3. RExcel 3.2.15,statconnDCOM3.6-0B2_Noncommercial
有什么问题?我该怎么办?
当我尝试从 Excel 将数据导入 R Studio 时,数字列在 R 中被导入为 Logical。
有没有办法将这些列作为数字导入到 R 中?Excel 中的列已格式化为数字。
我正在使用read_excel导入文件。
我尝试导入的电子表格有 80 列。
在MS SharePoint中使用R功能的最佳方法是什么?如果我使用Excel Services在SharePoint中导入Excel工作表,RExcel会工作吗?还有其他选择吗?
关于如何执行此操作的信息并不多。我试着在网上研究了一个博客,并在 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
Run Code Online (Sandbox Code Playgroud)
但是,当我在 Excel 中运行宏时,它基本上什么都不做——只是在 RStudio 中打开脚本。我没有收到任何错误,但它没有给出任何输出 - 只是在 Rstudio 中打开 R 脚本。我究竟做错了什么?
另外,如果我需要在 …
RAndFriends包括运行所需的所有项目RExcel,仅包括R 2.15.2.
我目前使用的最新版本R,但rcom 2.3.1和rscproxy 2.0.5,这是我现在使用的,不要让我开始了R在Excel服务器.
在RExcel中设置前台服务器会返回致命错误并R拒绝与Excel的任何连接rcom.
我收到两条错误消息:
R Server not availableThere seems to be no R process connected to Excel与正在运行的RExcel会话的主要区别在于,在后者中,您可能会在启动会话时看到rscproxy并rcom加载RExcel.
有没有谁正在使用的人RExcel用R 3.0.1谁可以给我解释一下他是如何成功地运行它(一步一步)?