Hi Chris,
      Thanks a zillion for providing me this quick solution. It worked! It
would not have been possible withiut yur help in such a short time. Is it
your dedicated effort to learn Lucene or some technique?

Thanks,
Varun


On 2/3/06, Chris Hostetter <[EMAIL PROTECTED]> wrote:
>
>
> take a look at the TermEnum and TermDoc classes. they should give you all
> the info you need, using psuedo code something like this...
>
>      foreach Term in TermEnum
>         foreach doc in TermDoc
>            record Term, TermDoc.doc, TermDoc.freq
>
>
> : Date: Fri, 3 Feb 2006 13:31:49 -0500
> : From: varun sood <[EMAIL PROTECTED]>
> : Reply-To: java-user@lucene.apache.org
> : To: java-user@lucene.apache.org
> : Subject: Frequency Matrix
> :
> : Hi,
> :  I am impelementing Lucene to index my website. I would like to know if
> its
> : possible to generate a simple frequency matrix?
> :
> : By frequency matrix I mean, docmuent name on top X-Axis and keywords on
> left
> : Y-Axis. and the cells of the matrix will contain the frequency of the
> : keyword in a particluar document.
> :
> : I know its very much possible, but its just time which is limited to dig
> : more in Lucene.
> :
> : Thanks in advance.
> : Varun
> :
>
>
>
> -Hoss
>
>
> ---------------------------------------------------------------------
> To unsubscribe, e-mail: [EMAIL PROTECTED]
> For additional commands, e-mail: [EMAIL PROTECTED]
>
>

Reply via email to