Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I have a r-function in a r-scipt called analyse.R. It creates two pictures. I need to call this r-scipt in Ruby. I have the following code for Ruby:

tally = Hash.new(0)
  File.open('gettysburg.txt').each_line do |line|
     line.downcase.split(/\W+/).each { |w| tally[w] += 1 }
  end
  total = tally.values.inject { |sum,count| sum + count }
  tally.delete_if { |key,count| count < 3 || key.length < 4 }
    require "rinruby"
    R.quit
    myr = RinRuby.new(echo=false)
  myr.keys, myr.counts = tally.keys, tally.values
        myr.filename = "myplot"     

myr.eval <<EOF

     names(counts) <- keys
     png(filename)
     barplot(rev(sort(counts)),main="Frequency of Non-Trivial Words",las=2)
     mtext("Among the #{total} words in the Gettysburg Address",3,0.45)
     rho <- round(cor(nchar(keys),counts),4)
     dev.off()
EOF

I do understand what the code does. But I have not found if I can call somehow a r-script in Ruby. What should I do in order to be able to call a r-script in Ruby?

Thanks in advanced

share|improve this question
1  
Are you sure you understand what the code does? Because it calls an r-script in Ruby. – Mark Thomas Nov 16 '12 at 1:32

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.