Lead Data Scientist Question:
Download Job Interview Questions and Answers PDF
Explain me nchar() in R string manipulation?
Answer:
To find out if elements of a character vector are non-empty strings or not then nzchar is the fastest way.
Keywords
character
Usage
nchar(x, type = “chars”, allowNA = FALSE, keepNA = NA)
nzchar(x, keepNA = FALSE)
Arguments
a. x
Basically, a character vector or a vector will be restricted to a character vector. Giving a factor is an error.
b. type
character string: partial matching to one of c(“bytes”, “chars”, “width”).
c. allowNA
Should NA will return for invalid multibyte strings or “bytes”-encoded strings
d. keepNA
The default for nchar(), NA, means to use keepNA = TRUE unless type is “width”. Used to be hardcoded to FALSE in R versions ≤ 3.2.0.
Keywords
character
Usage
nchar(x, type = “chars”, allowNA = FALSE, keepNA = NA)
nzchar(x, keepNA = FALSE)
Arguments
a. x
Basically, a character vector or a vector will be restricted to a character vector. Giving a factor is an error.
b. type
character string: partial matching to one of c(“bytes”, “chars”, “width”).
c. allowNA
Should NA will return for invalid multibyte strings or “bytes”-encoded strings
d. keepNA
The default for nchar(), NA, means to use keepNA = TRUE unless type is “width”. Used to be hardcoded to FALSE in R versions ≤ 3.2.0.
Download Lead Data Scientist Interview Questions And Answers
PDF
Previous Question | Next Question |
Can you describe strsplit() in R string manipulation? | Tell me how do clean up and organize big data sets? |