We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
The text at the start of section 7.1 and the example do not appear to agree on what nchar() does on encountering NA:
text <- c("one", "two", "three", NA, "five") nchar(text) [1] 3 3 5 NA 4
Thank you for making this material available!
The text was updated successfully, but these errors were encountered:
It used to be true, but is no longer. This behavior changed around R 3.2.0 and is controlled by the keepNA parameter.
keepNA
Sorry, something went wrong.
No branches or pull requests
The text at the start of section 7.1 and the example do not appear to agree on what nchar() does on encountering NA:
Thank you for making this material available!
The text was updated successfully, but these errors were encountered: