in reply to Noun phrases extraction with frequencies

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.)

Replies are listed 'Best First'.
Re^2: Noun phrases extraction with frequencies
by vit (Friar) on Jul 01, 2009 at 15:54 UTC
    Thank a lot !!!!!
    I do not know where was I when I looked at this module :)