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