ruby
1 @victry_times=notes_all.where('profit_and_loss > 0').group("HOUR(CONVERT_TZ(created_at, '+00:00', '+09:00'))").count.values.map{|money| money/notes_all.group("HOUR(CONVERT_TZ(created_at, '+00:00', '+09:00'))").count*100}
というコードに対して
ruby
1Hash can't be coerced into Integer
というエラーが起きます。ハッシュを整数に強制できないという意味のようですが、どこが原因なのでしょうか?
条件指定したものをグループでまとめその個数を数えた上で各個数に対して全体の母数で割る処理をしたいです。どのように対応すれば良いでしょうか?
以下はこの問題に関する全コードです。
ruby
1def index 2 @user=current_user 3 @notes=@user.notes.all.order("id DESC").page(params[:page]).per(30) 4 notes_all=@user.notes 5 @comments=[] 6 if notes_all.present? 7 @notes.each do |note| 8 @comments << note.comments.count 9 end 10 @profit_symbol=notes_all.group(:symbol).sum(:profit_and_loss) 11 profit_month=notes_all.group("MONTH(created_at)") 12 @profit_changes = profit_month.sum(:profit_and_loss).values.map{|money| money/notes_all.sum(:profit_and_loss)*100} 13 @profit_times=notes_all.group("HOUR(CONVERT_TZ(created_at, '+00:00', '+09:00'))").sum(:profit_and_loss).values.map{|money| money/notes_all.sum(:profit_and_loss)*100} 14 @victry_times=notes_all.where('profit_and_loss > 0').group("HOUR(CONVERT_TZ(created_at, '+00:00', '+09:00'))").count.values.map{|money| money/notes_all.group("HOUR(CONVERT_TZ(created_at, '+00:00', '+09:00'))").count*100} 15 @victory_rates= notes_all.where('profit_and_loss > 0').group("MONTH(created_at)").count.values.map{|money| money/profit_month.count*100} 16 this_month = Date.today.all_month 17 before_month=Date.today.last_month 18 profit_this_month = [] 19 profit_before_month = [] 20 notes_all.each do |note| 21 if this_month.include?(Date.parse(note[:created_at].to_s)) 22 profit_this_month << note 23 elsif before_month.include?(Date.parse(note[:created_at].to_s)) 24 profit_before_month << note 25 end 26 end 27 @profit_this_month= profit_this_month.sum(:profit_and_loss) 28 @profit_this_month_average = @profit_this_month / profit_this_month.length 29 @victory_rate_this_month = profit_this_month.where("profit_and_loss > 0").count/profit_this_month.count*100 30 @profit_before_month= profit_before_month.sum(:profit_and_loss) 31 @profit_before_month_average= @profit_before_month / profit_before_month.length 32 @victory_rate_before_month=profit_before_month.where("profit_and_loss > 0").count/profit_before_month.count*100 33 end 34 end
回答1件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。