RoR: FasterCSV to hash - Stack Overflow most recent 30 from stackoverflow.com2009-12-06T07:10:51Zhttp://stackoverflow.com/feeds/question/339105http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/339105/ror-fastercsv-to-hash1RoR: FasterCSV to hashneezer2008-12-03T23:16:50Z2009-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" => 2, "bozo" => 1, "god" => 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#3391470Answer by Eli for RoR: FasterCSV to hashEli2008-12-03T23:35:06Z2008-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#3391480Answer by mat for RoR: FasterCSV to hashmat2008-12-03T23:35:44Z2008-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#3392534Answer by glenn mcdonald for RoR: FasterCSV to hashglenn mcdonald2008-12-04T00:34:30Z2008-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#14974740Answer by egarcia for RoR: FasterCSV to hashegarcia2009-09-30T11:10:30Z2009-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 => :first_row) do |row|
key=row[0]
counter[key] = counter[key].nil? ? 1 : counter[key] + 1
end
</code></pre>