1
vote
2answers
119 views

Get word frequency using search engines

Are there any good services which can give me the amount of web pages a word occurs on ? I need this to calculate Normalized Google Distance. A few years ago there was the google web search API which ...
2
votes
1answer
359 views

count word frequency in multiple files/documents in java

i want to count word frequency to multiple files/documents in java. e.g. a1 = {aaa,aaa,aaa,bbb} a2 = {aaa, aaa, hhh} a3 = {aaa, hhh, bbb, bbb} so, i want to count word frequency for every file ...
1
vote
1answer
341 views

Python: unique words and their frequency in descending order

I'm doing a pretty simple homework problem for a Python class involving all sorts of statistics on characters, words and their relative frequencies etc. At the moment I'm trying to analyse a string of ...
1
vote
3answers
439 views

Perl Frequency sorting and other things

Edit: So I got the script working great with all your help, so thanks a lot. I'm also trying to figure out how I can keep the standard input choice but still be able to use a command-line "start" ...
3
votes
3answers
164 views

Python summing frequencies in a file

I have a large file (950MB) that conains words and frequencies as follows, one per line: word1 54 word2 1 word3 12 word4 3 word1 99 word4 147 word1 4 word2 6 etc... I need to sum the ...
1
vote
1answer
95 views

java progem to find distributional array of a word

I want to find the frequency of a word in each line of a file.I want to do this for every word in the file.I'm using BufferedReader and FileReader in java. can anyone help me plz???
4
votes
3answers
213 views

Algorithm for determining which words make a phrase popular

Suppose I had a list of slogans (short, multi-word phrases), and people had voted for the ones they liked best, and I wanted to assess which words, if any, made some slogans more popular than others. ...
0
votes
1answer
706 views

Indexing text files in PHP

I have been set a challenge to create an indexer that takes all words 4 characters or more, and stores them in a database along with how many times the word was used. I have to run this indexer on ...
2
votes
4answers
3k views

What is the best way to calculate word frequency in VB.NET?

There are some good examples on how to calculate word frequencies in C#, but none of them are comprehensive and I really need one in VB.NET. My current approach is limited to one word per frequency ...
4
votes
6answers
6k views

The Most Efficient Way To Find Top K Frequent Words In A Big Word Sequence

The question can be described as: Input: A positive integer K and a big text. The text can actually be viewed as word sequence. So we don't have to worry about how to break down it into word sequence. ...