AntConc doesn't do the tagging that you need. You will need to tag
your corpus with a tagger tool. (Google "POS tagger" for some
suggestions).
Also see http://en.wikipedia.org/wiki/Part-of-speech_tagging
I have used the freeware Qtag with success (but you'll need to install
the JAVA runtime to run it):
http://phrasys.net/uob/om/software
After you tag your corpus, AntConc can be used to search for the data
that is tagged. The tag settings are in the global settings menu.
I hope that helps.
Laurence.
###############################################################
Laurence Anthony, Ph.D.
Professor
Center for English Language Education in Science and Engineering (CELESE)
Faculty of Science and Engineering
Waseda University
3-4-1 Okubo, Shinjuku-ku, Tokyo 169-8555, Japan
E-mail: antho...@gmail.com
WWW: http://www.antlab.sci.waseda.ac.jp/
###############################################################
> --
> You received this message because you are subscribed to the Google Groups "AntConc-discussion" group.
> To post to this group, send email to ant...@googlegroups.com.
> To unsubscribe from this group, send email to antconc+u...@googlegroups.com.
> For more options, visit this group at http://groups.google.com/group/antconc?hl=en.
>
>
Thank you very much! It was really helpful!
Best regards,
|
|
|
|
Why not just specify the entire tag in the word filter? e.g.
<w pos=xxx>
<w pos=yyy>
...
or some variation of it, e.g.
pos=xxx
pos=yyy
...
I would doubt these overlap with normal words.
It seems a more reliable solution, assuming you know the entire tag set.
Laurence.
> I must be doing something wrong, and I can't figure it out.
>
> I've created a file with the word list:
>
> <w pos='BE'>
> <w pos='BED'>
> <w pos='BEDZ'>
> <w pos='BEG'>
> <w pos='BEM'>
> <w pos='BEN'>
>
> When I load it into AntConc, it just comes out as
>
> BE
> BED
> BEDZ
> BEG
> BEM
> BEN
The key to counting just the tags is to make sure the token definition
will include them. So, the token definition needs to include:
p, o, s, B, E, D, Z, G, M, N > which it already will if you use the
"user definition" option.
Then you need to add:
=, ' (equals sign and apostrophe)
Then "words" like: pos='BE' will be counted like any other word.
Laurence.