Apa itu vektor di r

#A vector is the simplest type of data structure in R.
#A vector as “a single entity consisting of a collection of things.” 
#A collection of numbers, for example, is a numeric vector.
c('a', 'b', 'c') #This is a character(string) vector.
Kwams