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