Create a Character Vector

appetizer
create vector
none spicy
Author

Ryan Garnett

Published

March 29, 2023

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"