如何让它运行:Analyse.get(“2010-01-1”,“2010-09-1”)。是什么意思?

时间:2010-09-22 09:47:43

标签: ruby

要求'rubygems'

要求'mysql'

课程分析

def self.get(from,to)

open('/tmp/result','w') do |wfile|

dbh = Mysql.real_connect("localhost", "root", "******")

dbh.query("use stock;")

result=dbh.query("select symbol,date,open,high,low,close from `#{symbol}` where (date > from and date< to) order by date asc;")

compute=[]

result.each{|row| wfile.puts row.join(";")}

end

def self.mean

amean=[]

open('/tmp/result','r'){|rfile|

  line=rfile.readlines

  line.each{|item|

  amean<< item.chomp.split(";")[-1].to_f

  }}

  amean=amean.compact

  amean.inject(0){|s,n| s+n}/(amean.size.to_f)

end

Analyse.get(“2010-01-1”,“2010-09-1”)可以获得一张表(日期从“2010-01-1”到“2010-09-1”), 然后输入Analyse.mean,得到从“2010-01-1”到“2010-09-1”的平均值, 我如何制作Analyse.get(“2010-01-1”,“2010-09-1”)。意味着要运行?

1 个答案:

答案 0 :(得分:0)

上面的代码不能像那样运行它。 Analyse.get()应该返回一个响应方法mean()的对象。