Created
January 10, 2019 01:03
-
-
Save carlows/e39db9efa681de7cb1a47262d24a7e29 to your computer and use it in GitHub Desktop.
Revisions
-
carlows revised this gist
Jan 10, 2019 . 1 changed file with 2 additions and 0 deletions.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -1,4 +1,6 @@ class AnnualWeather Reading = Struct.new(:date, :high, :low) def initialize (file_name) @readings = [] -
carlows created this gist
Jan 10, 2019 .There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,21 @@ class AnnualWeather def initialize (file_name) @readings = [] CSV.foreach(file_name, headers: true) do |row| @readings << Reading.new(Date.parse(row[2]), row[10].to_f, row[11].to_f) end end def mean return 0.0 if @readings.size.zero? total = @readings.reduce(0.0) do |sum, reading| sum + (reading.high + reading.low) / 2.0 end total / @readings.size.to_f end end