| Description | |
|---|---|
| Create a vector object in memory that has multiple character values |
| Ingredients | |
| Package | Data |
|---|---|
| NA | NA |
Sample Instructions
object_name <- c("text", "text", "text")Actual Instructions
character_vector <- c("one", "two", "three")Output
[1] "one" "two" "three"