Returns the Document with the given name (assuming document names are unique).
(self, name)
| 933 | self.__delitem__(self.documents.index(document)) |
| 934 | |
| 935 | def document(self, name): |
| 936 | """ Returns the Document with the given name (assuming document names are unique). |
| 937 | """ |
| 938 | if name in self._index: |
| 939 | return self._index[name] |
| 940 | |
| 941 | def document_frequency(self, word): |
| 942 | """ Returns the document frequency for the given word or feature. |
no outgoing calls