我目前正在使用rseve和rserve-simpler gem。
任何有过如何最好地完成此任务的人。我没有绑定特定的gem / lib
此致
答案 0 :(得分:0)
我使用以下代码
实现了这一目标# setup the data to be used by R scripts
r.>> "data <- c(#{out_data_points})"
# Setup some params for plotting
r.>> "png(file='#{Rails.root}/public#{plot_file_name}')"
r.>> "plot_name <- '#{self.name} : #{label}'"
# call the custom script
r.>> "source('#{Rails.root}/app/rscripts/custom_script.r')"
我通过数据变量发送R数据,脚本必须在R中设置变量,这些变量可以通过rails app中的converse方法获得。此外,图像被发送到一个特定的目录,其名称由rails app指定并传递给RScript。