Skip to content

nsyllable does not count all caps words inside quotes #1282

Description

@JEbertPrime

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

Activity

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Metadata

Metadata

Assignees

Labels

Type

No type

Projects

No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions