Q. How do you create a character vector with the elements "apple", "orange", and "banana" in R?
β
Correct Answer: (A)
char_vec <- c("apple", "orange", "banana")
You must be Logged in to update hint/solution