Arrays in R
Arrays
Arrays are multi-dimensional data structures that can store more than two dimensions of data.
r
array_example <- array(1:12, dim=c(3,4))
print(array_example)
Next Tutorial: Lists in R

