Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I have a csv file. The structure of the csv file is:

Name Hour Location
A    4    San Fransisco
B    2    New York
C    4    New York
D    7    Denton
E    8    Boston
F    1    Boston

If you observe the data above, There are

2 New York and
2 Boston

I tried to use the tabular package. I tried the tutorials mentioned in the tabular package documentation since more than 7 hours. But I dint get through.

Can anyone help me, how can I extract the count of the frequent words in that Csv file in the Location column using Python.

Thank you.

share|improve this question
4  
What have you tried? – g.d.d.c Jul 9 '12 at 14:06
@g.d.d.c I tried to use the package tabular. – user907629 Jul 9 '12 at 14:09
@robert, Yes I mentioned the count in front for 2 of New York. – user907629 Jul 9 '12 at 14:11

3 Answers

up vote 5 down vote accepted
data = """Name\tHour\tLocation
A\t4\tSan Fransisco
B\t2\tNew York
C\t4\tNew York
D\t7\tDenton
E\t8\tBoston
F\t1\tBoston
"""

import csv
import StringIO
from collections import Counter


input_stream = StringIO.StringIO(data)
reader = csv.reader(input_stream, delimiter='\t')

reader.next() #skip header
cities = [row[2] for row in reader]

for (k,v) in Counter(cities).iteritems():
    print "%s appears %d times" % (k, v)

Output:

San Fransisco appears 1 times
Denton appears 1 times
New York appears 2 times
Boston appears 2 times
share|improve this answer
Thanks for the answer. – user907629 Jul 9 '12 at 14:17
+1 Although I would have Counter(row[2] for row in reader) so it doesn't iterate through the cities twice and create and intermediary list. – jamylak Jul 9 '12 at 14:31

Not sure what you are separating by but the example shows up as 4 spaces so this is a solution for that.

If you actually are separating by tabs use the answer by @MariaZverina

import collections

with open('test.txt') as f:
    next(f) # Skip the first line
    print collections.Counter(line.rstrip().rpartition('    ')[-1] for line in f)

Output:

Counter({'New York': 2, 'Boston': 2, 'San Fransisco': 1, 'Denton': 1})
share|improve this answer
Thanks for the response. Even though you used a txt file instead of a csv file as I mentioned, this gives me an idea. – user907629 Jul 9 '12 at 14:16
1  
@user907629 Right I just copied what you had there into a .txt. Your file doesn't have a good structure so you might wanna go with a more conventional one like actual comma separated values. EDIT: Just realized they are tabs but they seem to have come out as spaces or at least I think so – jamylak Jul 9 '12 at 14:18

If the file isn't too large, the most naive way would be:

  • Read the file line by line
  • Append the values for location to a list
  • Build a set of uniques from that list
  • Determine the count for each of the uniques in the list
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.