Get your own website Result Size: 625 x 565
x
 
thismatrix <- matrix(c("apple", "banana", "cherry", "orange","grape", "pineapple", "pear", "melon", "fig"), nrow = 3, ncol = 3)
thismatrix[c(1,2),]
     [,1]     [,2]     [,3]   
[1,] "apple"  "orange" "pear" 
[2,] "banana" "grape"  "melon"