Vectors in R
Vectors in R
A vector is the most basic data structure in R. It stores elements of the same data type.
r
vector_example <- c(1,2,3,4,5)
print(vector_example)
Next Tutorial: Matrices in R

