monetdb 嵌入式 R

monetdb embedded R

我正在尝试使用 Windows 中的嵌入式 R 功能 7. 我用

启动服务器
mserver5 --set embedded_r=true

虽然我没有看到消息 # MonetDB/R module loaded

然后我想测试 rapi00 提供的例子 here:

CREATE FUNCTION rapi00() RETURNS TABLE (d INTEGER) LANGUAGE R {
    seq(1,10);
};

运行良好。但是,当我执行

SELECT d FROM rapi00() AS r WHERE d > 5;

我收到以下错误消息

TypeException:user.s10_1[2]:'rapi.eval' undefined in: _4:bat[:oid,:int] := rapi.
eval(_5:ptr, _6:str)
program contains errors

我想知道 Windows 中是否完全实现了此功能(它在 mac os 中运行良好)。有人可以帮忙吗?

MonetDB 的嵌入式 R 在 Windows 上不可用。我不打算在那里提供它。在我看来,运行在 Windows 上安装 MonetDB 服务器没有太大意义,因为该平台的性能限制。

我们 Windows 现在拥有的是 R 的 MonetDBLite,我们 运行 R 中的 MonetDB。