Returns an anchor chunk for this prepositional noun phrase (without a PP-attacher). Often, the nearest verb phrase is a good candidate.
(self)
| 495 | return self.chunks |
| 496 | |
| 497 | def guess_anchor(self): |
| 498 | """ Returns an anchor chunk for this prepositional noun phrase (without a PP-attacher). |
| 499 | Often, the nearest verb phrase is a good candidate. |
| 500 | """ |
| 501 | return self.nearest("VP") |
| 502 | |
| 503 | #--- CONJUNCTION ----------------------------------------------------------------------------------- |
| 504 |