Run ❯
Get your
own
website
×
Change Orientation
Change Theme, Dark/Light
Go to Spaces
thismatrix <- matrix(c("apple", "banana", "cherry", "orange", "mango", "pineapple"), nrow = 3, ncol = 2) #Remove the first row and the first column thismatrix <- thismatrix[-c(1), -c(1)] print(thismatrix)
[1] "mango" "pineapple"