3

我正在尝试使用 RSRuby 连接 Ruby 和 R。

在我的 application_controller 我有以下内容:

def InitR
    @r = RSRuby.instance
    return @r
end

当我做:

@r = InitR()

它在浏览器中引发以下内容:R Function "get" not found

并在控制台中显示:

NoMethodError (R Function "get" not found):
  app/controllers/application_controller.rb:6:in `InitR'
  app/controllers/diagnostic_controller.rb:32:in `generatePdf'

正如我在一些帖子中看到的那样,我试图更改堆栈限制,但它似乎什么也没做。

有人知道吗?

这就是我的代码在我的 ApplicationController 中的显示方式。

class ApplicationController < ActionController::Base
  protect_from_forgery

  # Make R instance available to all
  def initR
    @r = RSRuby.instance
  end

 end

这是 DiagnosticController,我想在其中使用实例:

def generatePdf
    project = Project.find(session[:project_id])

    pdf = Prawn::Document.new

    sentence = RSentence.find_by_name("library").content.gsub("LIBRARY", "lattice")

    pdf.text sentence

    pdf.render_file project.name.to_s + ".pdf"

    @r = initR
    @r.eval_R(sentence)

    redirect_to :controller => "diagnostic", :action => "index" 
  end

调用 RSRuby.instance 时引发异常

4

1 回答 1

0

这里有几个问题。

  1. 您在定义中使用大写字母 InitR - 应该是 initR
  2. 您正在尝试将实例变量设置为自身,即 InitR 方法的内部和外部。

尝试

def initR
  @r = RSRuby.instance
end

然后只需调用 initR,它将实例化 @r

您可以使用@r 例如访问功能@r.wilcox_text([1,2,3],[4,5,6])

好的,在您更新之后,initR 函数似乎已失效。设置@r = initR,就像说@r = @r = RSRuby.instance,例如你已经调用了两次。如果您想使用该功能,请将其更改为

def initR
  RSRuby.instance
end

然后你可以打电话@r = initR

此外,它查看错误是否与 R 本身有关,即错误不是 Ruby 错误,而是 R 错误。您能否尝试在 rails 控制台中运行生成函数中的步骤,这可能会突出显示哪个特定步骤失败。

于 2013-03-18T11:12:14.993 回答