vit has asked for the wisdom of the Perl Monks concerning the following question:

Dear Monks,
Does anybody know a module which performs noun phrases extraction like, e.g. Lingua::EN::Tagger, but with frequency counts of output world chunks.
  • Comment on Noun phrases extraction with frequencies

Replies are listed 'Best First'.
Re: Noun phrases extraction with frequencies
by dsheroh (Monsignor) on Jul 01, 2009 at 09:06 UTC
    According to the usage examples for Lingua::EN::Tagger,
    # Get a list of all nouns and noun phrases with occurrence counts my %word_list = $p->get_words( $text );
    Assuming the comment there is correct, it appears that Lingua::EN::Tagger itself does what you're asking for. (If not, I would think it should be simple enough to loop over its output and build the frequency count yourself.)
      Thank a lot !!!!!
      I do not know where was I when I looked at this module :)