Created
January 19, 2011 01:53
-
-
Save cobbal/785536 to your computer and use it in GitHub Desktop.
This file contains 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 characters
$ cat realworlddata.txt | awk '{print $2}' | python2.7 -c 'import sys, collections; print collections.Counter(line.strip() for line in sys.stdin)' | |
Counter({'excellent': 66, 'good': 53, 'average': 6}) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment