RoR: FasterCSV to hash - Stack Overflow most recent 30 from stackoverflow.com 2009-12-06T07:10:51Z http://stackoverflow.com/feeds/question/339105 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/339105/ror-fastercsv-to-hash 1 RoR: FasterCSV to hash neezer 2008-12-03T23:16:50Z 2009-09-30T11:10:30Z <p>I'm really struggling with grasping how to effectively use FasterCSV to accomplish what I want.</p> <p>I have a CSV file; say:</p> <pre><code>ID,day,site test,tuesday,cnn.com bozo,friday,fark.com god,monday,xkcd.com test,saturday,whatever.com </code></pre> <p>I what to go through this file and end up with a hash that has a counter for how many times the first column occurred. So:</p> <pre><code>["test" =&gt; 2, "bozo" =&gt; 1, "god" =&gt; 1] </code></pre> <p>I need to be able to do this without prior knowledge of the values in the first column.</p> <p>?</p> http://stackoverflow.com/questions/339105/ror-fastercsv-to-hash/339147#339147 0 Answer by Eli for RoR: FasterCSV to hash Eli 2008-12-03T23:35:06Z 2008-12-03T23:35:06Z <p>I don't have the code in front of me, but I believe <code>row.to_hash</code> does that (where <code>row</code> is the <code>FasterCSV::Row</code> of the current record)</p> <p><code>row.headers</code> should give you an array of the headers, incidentally. Check the docs for more: <a href="http://fastercsv.rubyforge.org/classes/FasterCSV/Row.html" rel="nofollow">http://fastercsv.rubyforge.org/classes/FasterCSV/Row.html</a></p> http://stackoverflow.com/questions/339105/ror-fastercsv-to-hash/339148#339148 0 Answer by mat for RoR: FasterCSV to hash mat 2008-12-03T23:35:44Z 2008-12-04T22:12:10Z <p>Hum, would :</p> <pre><code>File.open("file.csv").readlines[1..-1].inject({}) {|acc,line| word = line.split(/,/).first; acc[word] ||= 0; acc[word] += 1; acc} </code></pre> <p>do ?</p> <p>[1..-1] because we don't want the header line with the column names</p> <p>then, for each line, get the first word, put 0 in the accumulator if it does not exist, increment it, return</p> http://stackoverflow.com/questions/339105/ror-fastercsv-to-hash/339253#339253 4 Answer by glenn mcdonald for RoR: FasterCSV to hash glenn mcdonald 2008-12-04T00:34:30Z 2008-12-04T00:34:30Z <p>Easy:</p> <pre><code>h = Hash.new(0) FasterCSV.read("file.csv")[1..-1].each {|row| h[row[0]] += 1} </code></pre> <p>Works the same with CSV.read, as well.</p> http://stackoverflow.com/questions/339105/ror-fastercsv-to-hash/1497474#1497474 0 Answer by egarcia for RoR: FasterCSV to hash egarcia 2009-09-30T11:10:30Z 2009-09-30T11:10:30Z <p>I'd use foreach, and treat nils with respect - or else I'd risk an "undefined nil.+ method" error...</p> <pre><code>counter = {} FasterCSV.foreach("path_to_your_csv_file", :headers =&gt; :first_row) do |row| key=row[0] counter[key] = counter[key].nil? ? 1 : counter[key] + 1 end </code></pre>