I read a text into R using the readChar() function. I aim at testing the hypothesis that the sentences of the text have as many occurrences of letter "a" as occurrences of letter "b". I recently discovered the {stringr} package, which helped me a great deal to do useful things with my text such as counting the number of characters and the total number of occurrences of each letter in the entire text. Now, I need to know the number of sentences in the whole text. Does R have any function, which can help me do that? Thank you very much!
|
|
|||
|
|
migrated from stats.stackexchange.com Sep 26 '12 at 13:17
|
Thank you @gui11aume for your answer. A very good package I just found that can help do the work is
The Three more languages are supported in the package. You just need to install and load the corresponding model files.
|
|||||
|
|
What you are looking for is sentence tokenization, and it is not as straightforward as it seems, even in English (sentences like "I met Dr. Bennett, the ex husband of Mrs. Johson." can contain full stops). R is definitely not the best choice for natural language processing. If you are Python proficient, I suggest you have a look at the nltk module, which covers this and many other topics. You can also copy the code from this blog post, which does sentence tokenization and word tokenization. If you want to stick to R, I would suggest you count the end-of-sentence characters (
|
|||||
|