質問をすることでしか得られない、回答やアドバイスがある。

15分調べてもわからないことは、質問しよう!

新規登録して質問してみよう
ただいま回答率
85.35%
Ruby

Rubyはプログラミング言語のひとつで、オープンソース、オブジェクト指向のプログラミング開発に対応しています。

Ruby on Rails

Ruby on Railsは、オープンソースのWebアプリケーションフレームワークです。「同じことを繰り返さない」というRailsの基本理念のもと、他のフレームワークより少ないコードで簡単に開発できるよう設計されています。

Q&A

解決済

2回答

697閲覧

arrayの中から0以上のものを取り出したい。

ganbarou_nippon

総合スコア18

Ruby

Rubyはプログラミング言語のひとつで、オープンソース、オブジェクト指向のプログラミング開発に対応しています。

Ruby on Rails

Ruby on Railsは、オープンソースのWebアプリケーションフレームワークです。「同じことを繰り返さない」というRailsの基本理念のもと、他のフレームワークより少ないコードで簡単に開発できるよう設計されています。

1グッド

1クリップ

投稿2020/02/12 03:43

ruby

1 this_month = Date.today.all_month 2 before_month=Date.today.last_month 3 profit_this_month = [] 4 profit_before_month = [] 5 notes_all.each do |note| 6 if this_month.include?(Date.parse(note[:created_at].to_s)) 7 profit_this_month << note.profit_and_loss 8 elsif before_month.include?(Date.parse(note[:created_at].to_s)) 9 profit_before_month << note.profit_and_loss 10 end 11 end 12 @profit_this_month= profit_this_month.sum 13 @profit_this_month_average = @profit_this_month / profit_this_month.length 14 @victory_rate_this_month = profit_this_month.where(values > 0).count/profit_this_month.count*100 15 @profit_before_month= profit_before_month.sum(:profit_and_loss) 16 @profit_before_month_average= @profit_before_month / profit_before_month.length 17 @victory_rate_before_month=profit_before_month.where(values > 0).count/profit_before_month.count*100

というコードです。

ruby

1@victory_rate_this_month = profit_this_month.where(values > 0).count/profit_this_month.count*100 2@victory_rate_before_month=profit_before_month.where(values > 0).count/profit_before_month.count*100

この部分でprofit_this_monthの中に入っている値の内0以上のものだけ取り出したいです。valuesではうまくいきませんでした。(当然ですが…)どのように条件指定すれば良いでしょうか??

DrqYuto👍を押しています

気になる質問をクリップする

クリップした質問は、後からいつでもMYページで確認できます。

またクリップした質問に回答があった際、通知やメールを受け取ることができます。

バッドをするには、ログインかつ

こちらの条件を満たす必要があります。

winterboum

2020/02/12 03:52

profit_this_month.select{|v| v > 0 }
guest

回答2

0

ベストアンサー

rb

1p profit_this_month.a.select{|e| e >= 0}

で とりだせませんか?

投稿2020/02/12 03:57

nanami12

総合スコア1015

バッドをするには、ログインかつ

こちらの条件を満たす必要があります。

0

profit_this_month.select{|v| v > 0 }

nil が入っている可能性があるなら
profit_this_month.select{|v| v.to_i > 0 }

投稿2020/02/12 03:54

winterboum

総合スコア23567

バッドをするには、ログインかつ

こちらの条件を満たす必要があります。

ganbarou_nippon

2020/02/13 07:40

ありがとうございます! 解決しました。
guest

あなたの回答

tips

太字

斜体

打ち消し線

見出し

引用テキストの挿入

コードの挿入

リンクの挿入

リストの挿入

番号リストの挿入

表の挿入

水平線の挿入

プレビュー

15分調べてもわからないことは
teratailで質問しよう!

ただいまの回答率
85.35%

質問をまとめることで
思考を整理して素早く解決

テンプレート機能で
簡単に質問をまとめる

質問する

関連した質問