For some reason nsyllable can understand words that are first letter capitalized and words in lowercase inside quotation marks, but does not count all-caps words in quotes. Maybe this is something I'm just doing wrong.
all_caps=c("\"NO\"","\"DOG CAT\"")
nsyllable(all_caps)
# [1] NA NA
all_caps=c("\"NO\"","\"DOG Cat\"")
nsyllable(all_caps)
# [1] NA 1
all_caps=c("\"NO\"","\"DOg Cat\"")
nsyllable(all_caps)
# [1] NA 1
all_caps=c("\"NO\"","\"Dog Cat\"")
nsyllable(all_caps)
# [1] NA 2
For some reason nsyllable can understand words that are first letter capitalized and words in lowercase inside quotation marks, but does not count all-caps words in quotes. Maybe this is something I'm just doing wrong.