0

我将我的 R 包上传到 GitHub,然后按照此处的说明将其发布到 OpenCPU 上。

https://public.opencpu.org/ocpu/github/Klausos9/test/R/test/print

test是一个包含平方根估计公式的函数。

现在,在 JFiddle 中,我正在尝试使用 HTTP API 对该函数进行简单的调用。但是,我不能让它工作。任何想法?

http://jsfiddle.net/WVWCR/49/

但是当我点击运行按钮时,它会说:

R returned an error: unused argument (input = input)

In call:
test(input = input)
4

1 回答 1

1

尝试将ocpu.rpc调用更改为:

var req = ocpu.rpc("test",{
    x : mydata                        // <--- input : mydata
  }, function(output){
    $("tbody").empty();
    $.each(output, function(index, value){
      var html = "<tr><td>" + value.x + "</td><td>" + value.tv + "</td></tr>";
    $("tbody").append(html);
});

错误即将到来,因为您的函数调用传递了一个名为的参数input,而您的函数需要一个名为x.

编辑

完整的更正脚本(对于下面评论中提到的那个):-

  ocpu.seturl("//public.opencpu.org/ocpu/github/Klausos9/test/R")

  //some example data
  //to run with different data, edit and press Run at the top of the 
  //page
  var mydata = 2;

  //call R function: tvscore::tv(input=data)
  $("#submitbutton").click(function(){      // <--- needed
      var req = ocpu.rpc("test",{
          x : mydata                        // <--- changed; input : mydata
        }, function(output){
         $("#output").text(output);         // <--- changed; output.message
      });

    //optional
    req.fail(function(){
      alert("R returned an error: " + req.responseText); 
    });
  });
于 2015-06-26T20:46:31.230 回答